返回 CodeWhale
Cargo.toml
根目录 / crates / tools / Cargo.toml
1 [package]
2 name = "codewhale-tools"
3 version.workspace = true
4 edition.workspace = true
5 rust-version.workspace = true
6 license.workspace = true
7 repository.workspace = true
8 description = "Tool invocation lifecycle, schema validation, and scheduler parallelism for Codewhale"
9
10 [lints]
11 workspace = true
12
13 [dependencies]
14 anyhow.workspace = true
15 async-trait.workspace = true
16 codewhale-protocol = { path = "../protocol", version = "0.10.0" }
17 serde.workspace = true
18 serde_json.workspace = true
19 thiserror.workspace = true
20 tokio.workspace = true
21 uuid.workspace = true
22
22 lines TOML