-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathCargo.toml
More file actions
102 lines (97 loc) · 2.44 KB
/
Cargo.toml
File metadata and controls
102 lines (97 loc) · 2.44 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[workspace]
resolver = "2"
members = [
"examples",
"foyer",
"foyer-bench",
"foyer-cli",
"foyer-common",
"foyer-memory",
"foyer-storage",
"xtask",
]
[workspace.package]
version = "0.21.0-dev"
edition = "2021"
rust-version = "1.85.0"
repository = "https://github.com/foyer-rs/foyer"
homepage = "https://foyer-rs.github.io/foyer"
keywords = ["cache", "hybrid"]
authors = ["MrCroxx <mrcroxx@outlook.com>"]
license = "Apache-2.0"
readme = "README.md"
exclude = ["website/*"]
[workspace.dependencies]
allocator-api2 = "0.2"
anyhow = "1"
arc-swap = "1"
auto_enums = "0.8"
bincode = "1"
bitflags = "2"
bytes = "1"
bytesize = { package = "foyer-bytesize", version = "2" }
cfg-if = "1"
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
cmsketch = "0.2"
colored = "3"
console-subscriber = "0.5"
core_affinity = "0.8"
criterion = "0.7"
csv = "1"
equivalent = "1"
fastant = "0.1"
fastrace = "0.7"
fastrace-jaeger = "0.7"
fastrace-opentelemetry = "0.14"
flume = "0.11"
foyer = { version = "0.21.0-dev", path = "foyer" }
foyer-common = { version = "0.21.0-dev", path = "foyer-common" }
foyer-memory = { version = "0.21.0-dev", path = "foyer-memory" }
foyer-storage = { version = "0.21.0-dev", path = "foyer-storage" }
fs4 = { version = "0.13", default-features = false }
futures-core = { version = "0.3" }
futures-util = { version = "0.3", default-features = false, features = ["std"] }
hashbrown = "0.16"
hdrhistogram = "7"
http-body-util = "0.1"
humantime = "2"
hyper = { version = "1", default-features = false }
hyper-util = { version = "0.1", default-features = false }
intrusive-collections = { package = "foyer-intrusive-collections", version = "0.10.0-dev" }
io-uring = "0.7"
itertools = "0.14"
libc = "0.2"
lz4 = "1"
mixtrics = "0.2"
moka = "0.12"
opentelemetry = "0.31"
opentelemetry-otlp = "0.31"
opentelemetry-semantic-conventions = "0.31"
opentelemetry_sdk = "0.31"
parking_lot = { version = "0.12" }
paste = "1"
pin-project = "1"
prometheus = "0.14"
rand = { version = "0.9" }
rand_distr = { version = "0.5" }
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1"
smol = "2"
tempfile = "3"
test-log = "0.2"
thiserror = "2"
tikv-jemallocator = "0.6"
tokio = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
twox-hash = "2"
zstd = "0.13"
[workspace.lints.rust]
missing_docs = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(madsim)'] }
[workspace.lints.clippy]
allow_attributes = "warn"
[profile.release]
debug = "full"