Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ This folder contains AI agent instructions and conventions for the Trix project.
## Available Skills

- [Trix CLI Conventions](skills/trix-cli-conventions/SKILL.md) - Standards for implementing CLI commands
- [Trix E2E Testing](skills/trix-e2e-testing/SKILL.md) - Standards for writing end-to-end tests
132 changes: 132 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,23 @@ tracing-subscriber = "0.3.22"
dotenv-parser = "0.1.3"
termimad = "0.31"

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
insta = "1.42"
libc = "0.2"

[features]
unstable = []

[lib]
name = "trix"
path = "src/lib.rs"

[[bin]]
name = "trix"
path = "src/main.rs"

# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
Expand Down
Loading
Loading