-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (47 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
49 lines (47 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[workspace]
members = [
"crates/nils-common",
"crates/nils-term",
"crates/nils-test-support",
"crates/cli-template",
"crates/memo-cli",
"crates/codex-cli",
"crates/fzf-cli",
"crates/git-scope", "crates/git-summary", "crates/git-lock", "crates/git-cli",
"crates/image-processing",
"crates/macos-agent",
"crates/screen-record",
"crates/api-testing-core",
"crates/api-rest",
"crates/api-gql",
"crates/api-grpc",
"crates/api-websocket",
"crates/api-test",
"crates/semantic-commit",
"crates/plan-tooling",
"crates/plan-issue-cli",
"crates/agent-docs",
"crates/gemini-cli",
]
resolver = "2"
[workspace.package]
# Track the edition for all workspace crates in one place. Individual
# crates can still override this value, but keeping it here means new
# crates created with `cargo new -w ...` automatically inherit the 2024
# edition.
edition = "2024"
license = "MIT"
version = "0.6.8"
[workspace.dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
directories = "6"
pretty_assertions = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
toml = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
indicatif = "0.18"