-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
67 lines (61 loc) · 1.49 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"examples",
"foyer",
"foyer-bench",
"foyer-cli",
"foyer-common",
"foyer-memory",
"foyer-storage",
]
[workspace.package]
version = "0.14.0"
edition = "2021"
rust-version = "1.81.0"
repository = "https://github.com/foyer-rs/foyer"
homepage = "https://foyer.rs"
keywords = ["cache", "hybrid"]
authors = ["MrCroxx <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[workspace.dependencies]
ahash = "0.8"
bytesize = { package = "foyer-bytesize", version = "2" }
clap = { version = "4", features = ["derive"] }
crossbeam = "0.8"
equivalent = "1"
fastrace = "0.7"
hashbrown = "0.15"
itertools = "0.14"
parking_lot = { version = "0.12" }
serde = { version = "1", features = ["derive", "rc"] }
test-log = { version = "0.2", default-features = false, features = [
"trace",
"color",
] }
thiserror = "2"
tokio = { package = "madsim-tokio", version = "0.2", features = [
"rt",
"rt-multi-thread",
"sync",
"macros",
"time",
"signal",
"fs",
] }
tracing = "0.1"
prometheus = "0.13"
mixtrics = "0.0.3"
# foyer components
foyer-common = { version = "0.14.0", path = "foyer-common" }
foyer-memory = { version = "0.14.0", path = "foyer-memory" }
foyer-storage = { version = "0.14.0", path = "foyer-storage" }
foyer = { version = "0.14.0", path = "foyer" }
[workspace.lints.rust]
missing_docs = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(madsim)'] }
[workspace.lints.clippy]
allow_attributes = "warn"
[profile.release]
debug = "full"