-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
49 lines (44 loc) · 1.46 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
[package]
name = "shm-ringbuf"
version = "0.1.0"
authors = ["fys <[email protected]>"]
edition = "2021"
keywords = ["ringbuf", "shared-memory", "ipc"]
license = "Apache-2.0"
description = "A ringbuf based on shared memory"
homepage = "https://github.com/GreptimeTeam/shm-ringbuf"
repository = "https://github.com/GreptimeTeam/shm-ringbuf"
readme = "README.md"
[features]
benchmark = []
[dependencies]
async-trait = { version = "0.1" }
crc32fast = { version = "1.4" }
dashmap = { version = "6.1" }
futures = { version = "0.3" }
hyper-util = { version = "0.1" }
moka = { version = "0.12", default-features = false, features = ["sync"] }
nix = { version = "0.29", features = ["mman", "fs"] }
once_cell = { version = "1.20" }
passfd = { git = "https://github.com/polachok/passfd.git", rev = "d55881752c16aced1a49a75f9c428d38d3767213", features = [
"async",
] }
prost = { version = "0.13" }
uuid = { version = "1.11", features = ["v4"] }
snafu = { version = "0.8" }
tokio = { version = "1.0", features = ["fs", "rt-multi-thread"] }
tokio-stream = { version = "0.1", default-features = false, features = ["net"] }
tokio-util = { version = "0.7" }
tonic = { version = "0.12" }
tower = { version = "0.5", features = ["util"] }
tracing = { version = "0.1" }
[dev-dependencies]
criterion = { version = "0.5" }
rand = { version = "0.8" }
tempfile = { version = "3.14" }
tracing-subscriber = { version = "0.3" }
[build-dependencies]
tonic-build = "0.12"
[[bench]]
name = "ringbuf"
harness = false