-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 922 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 922 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
[package]
name = "sideway"
version = "0.4.1"
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 <lukedyue@gmail.com>",
"FujiZ <i@fujiz.me>",
]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rdma-mummy-sys = "0.2.3"
tabled = "0.18"
libc = "0.2"
os_socketaddr = "0.2"
bitmask-enum = "2.2"
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
[dev-dependencies]
trybuild = "1.0"
rstest = "0.24"
clap = { version = "4.5", features = ["derive"] }
rand = "0.9"
postcard = { version = "1.1", features = ["alloc"] }
quanta = "0.12"
byte-unit = "5.1"
proptest = "1.6"
anyhow = "1.0"
termtree = "0.5"
polling = "3.10"