forked from indexable-inc/index
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (82 loc) · 2.34 KB
/
Copy pathCargo.toml
File metadata and controls
86 lines (82 loc) · 2.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[workspace]
members = [
"modules/services/resource-monitor/stats-writer",
"packages/agents-md",
"packages/code-tokenizer",
"packages/dag-runner",
"packages/file-search",
"packages/ix-dev-diagnose",
"packages/mcp",
"packages/minecraft/nbt",
"packages/minecraft/sync-managed",
"packages/nix-cargo-unit",
"packages/nix-web-monitor/parser",
"packages/nix-web-monitor/server",
"packages/oci-image-builder",
"packages/repo-walker",
"packages/tui",
"packages/tui-py",
]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
publish = false
[workspace.lints.rust]
warnings = "deny"
[workspace.lints.clippy]
# Group lints need priority below per-lint overrides so allowlist entries
# (such as `multiple_crate_versions`) can opt out without disabling the group.
# Cargo emits `lint_groups_priority` errors otherwise.
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
multiple_crate_versions = "allow"
[workspace.dependencies]
anyhow = "1"
askama = { version = "0.16.0", default-features = false }
axum = "0.8"
base64 = "0.22"
chrono = { version = "0.4", default-features = false }
clap = "4"
code-tokenizer = { path = "packages/code-tokenizer" }
color-eyre = "0.6"
futures = "0.3"
hegeltest = { version = "0.14", default-features = false }
ignore = "0.4"
indicatif = "0.18"
libc = "0.2"
ndarray = "0.16"
nix-web-monitor-parser = { path = "packages/nix-web-monitor/parser" }
numpy = "0.28"
parking_lot = "0.12"
pty-process = { version = "0.4", features = ["async"] }
pyo3 = { version = "0.28", features = ["abi3-py311"] }
pyo3-async-runtimes = { version = "0.28", features = ["tokio-runtime"] }
quartz_nbt = "0.2.9"
repo-walker = { path = "packages/repo-walker" }
rmcp = "1.7"
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] }
rustls-native-certs = "0.8"
schemars = "1"
serde = "1"
serde_json = "1"
sha2 = "0.10"
similar = "2"
snafu = "0.9"
strip-ansi-escapes = "0.2"
tango-bench = "0.7"
tantivy = "0.26"
tar = "0.4"
tempfile = "3"
tokio = "1"
tokio-stream = "0.1"
toml = { version = "1.1.2", default-features = false }
tower-http = "0.6"
tui = { path = "packages/tui" }
url = { version = "2.5.8", default-features = false }
uuid = "1"
vt100 = "0.16"
webpki-roots = "1"
x509-parser = "0.18"