-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.06 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
[package]
name = "sideway"
version = "0.2.0"
description = "A better wrapper for using RDMA programming APIs in Rust flavor"
license= "MPL-2.0"
repository = "https://github.com/RDMA-Rust/sideway"
readme = "README.md"
keywords = ["RDMA", "verbs", "cm", "libibverbs", "librdmacm"]
authors = [
"Luke Yue <[email protected]>",
"FujiZ <[email protected]>",
]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rdma-mummy-sys = "0.2"
tabled = "0.16"
libc = "0.2"
os_socketaddr = "0.2"
bitmask-enum = "2.2"
lazy_static = "1.5.0"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0.64"
[dev-dependencies]
trybuild = "1.0"
rstest = "0.23"
clap = { version = "4.5", features = ["derive"] }
rand = "0.8"
postcard = { version = "1.0", features = ["alloc"] }
quanta = "0.12"
byte-unit = "5.1"
ouroboros = "0.18"
proptest = "1.5"
anyhow = "1.0"
[features]
debug = []
[[example]]
name = "rc_pingpong"
required-features = ["debug"]
[[example]]
name = "rc_pingpong_split"
required-features = ["debug"]