-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (72 loc) · 2.17 KB
/
Copy pathCargo.toml
File metadata and controls
76 lines (72 loc) · 2.17 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
[workspace]
resolver = "2"
members = [
"crates/ledge-core",
"crates/ledge-object-store",
"crates/ledge-ref-store",
"crates/ledge-wal",
"crates/ledge-workspace",
"crates/ledge-git",
"crates/ledge-server",
"crates/ledge-bench",
"crates/ledge-cow",
"crates/ledge-rpc",
"crates/ledge-raft",
"crates/ledge-cluster",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.89"
license = "BUSL-1.1"
authors = ["Vansh Verma"]
description = "Git-compatible, content-addressed storage infrastructure for agent-scale workloads."
repository = "https://github.com/v-code01/ledge"
[workspace.dependencies]
blake3 = "1"
tokio = { version = "1", features = ["full"] }
bytes = "1"
thiserror = "2"
arc-swap = "1"
serde = { version = "1", features = ["derive"] }
bincode = { version = "2", features = ["serde"] }
tracing = "0.1"
async-trait = "0.1"
hex = "0.4"
proptest = "1"
criterion = { version = "0.5", features = ["html_reports"] }
gix-pack = "0.54"
axum = "0.8"
tower = "0.5"
tower-http = { version = "0.6", features = ["trace", "timeout", "limit"] }
metrics = "0.24"
metrics-exporter-prometheus = "0.16"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
clap = { version = "4", features = ["derive"] }
config = "0.14"
serde_json = "1"
anyhow = "1"
sha1 = "0.10"
sha2 = "0.10"
flate2 = "1"
rand = "0.8"
crc32fast = "1"
tempfile = "3"
futures = "0.3"
reflink-copy = "0.1"
capnp = "0.21"
capnpc = "0.21"
openraft = "0.9"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
rustls = "0.23"
rustls-pemfile = "2"
rcgen = "0.13"
russh = "0.61"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
[profile.bench]
inherits = "release"
debug = true