-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 719 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/autocli-core",
"crates/autocli-pipeline",
"crates/autocli-browser",
"crates/autocli-output",
"crates/autocli-discovery",
"crates/autocli-external",
"crates/autocli-ai",
"crates/autocli-cli",
]
[workspace.package]
version = "0.2.4"
edition = "2021"
license = "Apache-2.0"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
thiserror = "2"
anyhow = "1"
async-trait = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"