forked from LeeSmet/s3-cas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (37 loc) · 840 Bytes
/
Cargo.toml
File metadata and controls
48 lines (37 loc) · 840 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
36
37
38
39
40
41
42
43
44
45
46
47
48
[workspace]
members = ["cas-storage", "s3-cas"]
resolver = "2"
[workspace.package]
edition = "2018"
authors = ["Lee Smet <lee.smet@hotmail.com>"]
[workspace.dependencies]
# Core async runtime
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
async-fs = "2.1"
futures = "0.3"
# Storage backend
fjall = "2.11.2"
# Hashing and crypto
md-5 = { version = "0.10.6" }
faster-hex = "0.10.0"
# Data structures
bytes = "1.7.1"
uuid = { version = "1.12", features = ["v4"] }
# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
bincode = "2.0.1"
toml = "0.8"
# Error handling
anyhow = { version = "1.0.95" }
# Logging and tracing
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
# Time
chrono = "0.4"
# Utilities
lazy_static = "1.5.0"
[profile.release]
lto = true
codegen-units = 1