返回 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 [dependencies]
11 anyhow.workspace = true
12 async-trait.workspace = true
13 codewhale-protocol = { path = "../protocol", version = "0.9.4" }
14 serde.workspace = true
15 serde_json.workspace = true
16 thiserror.workspace = true
17 tokio.workspace = true
18 uuid.workspace = true
19
19 lines TOML