-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (56 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
63 lines (56 loc) · 1.67 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
[package]
name = "splitrail"
version = "3.5.2"
edition = "2024"
license = "MIT"
authors = ["Piebald LLC <support@piebald.ai>"]
[features]
default = ["mimalloc"]
# Use mimalloc allocator for reduced memory usage. Disable for heaptrack profiling:
# cargo build --no-default-features
mimalloc = ["dep:mimalloc", "dep:libmimalloc-sys"]
[dependencies]
mimalloc = { version = "0.1.48", default-features = false, features = ["v3"], optional = true }
libmimalloc-sys = { version = "0.1.44", features = ["extended"], optional = true }
serde = { version = "1.0.228", features = ["derive"] }
anyhow = "1.0"
glob = "0.3"
walkdir = "2"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1", features = ["full"] }
lasso = { version = "0.7", features = ["multi-threaded"] }
futures = "0.3"
rayon = "1.10"
dashmap = "6"
num-format = "0.4"
ratatui = "0.30.0"
crossterm = "0.29"
toml = "0.9.10"
async-trait = "0.1"
notify = "8.2"
notify-types = "2.0"
sha2 = "0.10"
phf = { version = "0.13.1", features = ["macros"] }
serde_bytes = "0.11.19"
simd-json = { version = "0.17.0", features = ["serde"] }
tiktoken-rs = "0.9.1"
parking_lot = "0.12"
tinyvec = { version = "1.8", features = ["alloc"] }
c2rust-bitfields = "0.18"
dirs = "6.0"
chrono-tz = "0.10"
rusqlite = { version = "0.38.0", features = ["bundled"] }
iana-time-zone = "0.1"
# MCP server support
rmcp = { version = "0.12.0", features = ["server", "macros", "transport-io"] }
schemars = "1.2"
[dependencies.clap]
version = "4.5.53"
features = ["derive"]
[dependencies.reqwest]
version = "0.13.2"
default-features = false
features = ["rustls", "gzip"]
[dev-dependencies]
tempfile = "3.24"