-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 917 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 917 Bytes
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
[package]
name = "crasher"
version = "0.1.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.102"
thiserror = "2.0.18"
chrono = "0.4.44"
rand = "0.10.1"
clap = { version = "4.6.1", features = ["derive"] }
futures = { version = "0.3.32", default-features = false, features = [
"async-await",
"std",
] }
tokio = { version = "1.52.3", features = ["full"] }
tokio-stream = { version = "0.1.18", default-features = false, features = [
"fs",
] }
qdrant-client = "1.18.0"
ctrlc = "3.5.2"
log = "0.4.29"
env_logger = "0.11.10"
serde_json = "1.0.150"
uuid = { version = "1.23.1", features = ["v4", "serde"] }
tonic = "0.12.3"
reqwest = { version = "0.13.3", features = ["json"] } # for snapshot restore
ahash = "0.8.12"
nix = { version = "0.31.3", features = ["fs"] }
[profile.release]
lto = "fat"
codegen-units = 1