-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (80 loc) · 2.11 KB
/
Copy pathCargo.toml
File metadata and controls
86 lines (80 loc) · 2.11 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]
resolver = "3"
members = ["crates/*", "vendor/fjall"]
[workspace.package]
authors = ["orbitinghail <hello@orbitinghail.dev>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/eidos-space/graft"
homepage = "https://github.com/eidos-space/graft"
rust-version = "1.91"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[workspace.dependencies]
anyhow = "1.0.100"
assert_matches = "1.5.0"
base64 = "0.22.1"
bilrost = "0.1014.1"
blake3 = "1.8.2"
bs58 = "0.5.1"
bytes = "1.10.1"
bytestring = "1.5.0"
circular-buffer = "1.2.0"
clap = "4.5.49"
config = { version = "0.15.18", features = ["toml"] }
file-lock = "2.1.11"
fjall = { path = "vendor/fjall", version = "3.1.6", features = ["bytes_1", "lz4"] }
foldhash = "0.2.0"
futures = "0.3.31"
hashbrown = "0.16.0"
ignore = "0.4.31"
indoc = "2.0.7"
itertools = "0.14.0"
lz4_flex = "0.13.1"
napi = { version = "3.11.0", default-features = false, features = ["napi8"] }
napi-build = "2.3.2"
napi-derive = "3.6.0"
parking_lot = "0.12.5"
precept = "0.3.0"
rand = "0.10.0"
range-set-blaze = "0.4.1"
reqwest = { version = "0.12.26", default-features = false, features = ["hickory-dns", "rustls-tls", "stream"] }
rusqlite = "0.38.0"
serde = "1.0.228"
sha2 = "0.10.9"
splinter-rs = "0.12.1"
static_assertions = "1.1.0"
tempfile = "3.23.0"
test-log = "0.2.19"
text_trees = "0.1.2"
thin-vec = "0.2.14"
thiserror = "2.0.17"
tokio = "1.48.0"
tokio-stream = "0.1.17"
toml = "0.9.11"
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
tryiter = "0.6.0"
xxhash-rust = "0.8.15"
zerocopy = { version = "0.8.27", features = ["derive"] }
zeroize = "1.8.2"
zstd = "0.13.3"
[workspace.dependencies.opendal]
version = "0.55.0"
default-features = false
git = "https://github.com/apache/opendal"
rev = "06f088d93e38e1150a3f1558f327ec0252446302"
[workspace.lints.clippy]
disallowed_methods = "deny"
uninlined_format_args = "warn"
doc_markdown = "warn"
map_unwrap_or = "warn"
redundant_clone = "warn"
undocumented_unsafe_blocks = "warn"
[workspace.lints.rust]
ambiguous_negative_literals = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_lifetimes = "warn"