-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (63 loc) · 1.85 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (63 loc) · 1.85 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
[workspace]
members = [
"crates/rustio-core",
"crates/rustio-admin",
"crates/rustio-server",
"crates/rustio-cli",
]
resolver = "2"
[workspace.package]
version = "1.0.0"
edition = "2021"
license = "Apache-2.0"
authors = ["RustIO Contributors"]
[workspace.dependencies]
aes-gcm = { version = "0.10", features = ["aes"] }
anyhow = "1.0"
argon2 = "0.5"
async-stream = "0.3"
axum = { version = "0.8", features = ["http1", "http2", "json", "tokio", "query", "ws", "macros"] }
base64 = "0.22"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "env"] }
crc32fast = "1.4"
crc32c = "0.6"
crc64fast-nvme = "1.2"
sha1 = "0.10"
csv = "1.3"
futures = "0.3"
hmac = "0.12"
hex = "0.4"
http = "1.2"
jsonwebtoken = { version = "10.2", features = ["rust_crypto"] }
md-5 = "0.10"
percent-encoding = "2.3"
quick-xml = { version = "0.38", features = ["serialize"] }
reed-solomon-erasure = { version = "6.0", features = ["simd-accel"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
thiserror = "2.0"
tokio = { version = "1.44", features = ["macros", "rt-multi-thread", "signal", "sync", "time", "fs", "io-util", "process"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace", "set-header"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
uuid = { version = "1.15", features = ["serde", "v4"] }
lru = "0.18"
redb = "4"
digest = "0.10"
openraft = { version = "0.9", features = ["serde", "storage-v2"] }
[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
[profile.dev.package."*"]
opt-level = 2
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true