-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
43 lines (38 loc) · 1.16 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
[package]
name = "vtcode-tools"
version.workspace = true
edition.workspace = true
rust-version = "1.88"
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]
description = "Prototype extraction of VT Code's modular tool registry"
license.workspace = true
publish = false
categories = ["development-tools"]
keywords = ["vtcode", "tools", "registry", "modular", "ai-tools"]
[features]
default = ["bash", "search", "net", "planner"]
bash = []
search = []
net = []
planner = []
policies = []
examples = []
[dependencies]
vtcode-commons = { path = "../vtcode-commons", version = "0.86.12" }
vtcode-core = { path = "../vtcode-core", version = "0.86.12", default-features = false }
vtcode-acp-client = { path = "../vtcode-acp-client", version = "0.86.12" }
anyhow = { workspace = true }
async-trait = { workspace = true }
hashbrown = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
chrono = { workspace = true }
[dev-dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
serde_json = { workspace = true }
assert_fs = { workspace = true }
tokio = { workspace = true }
criterion = { workspace = true }
[lints]
workspace = true