forked from datenlord/async-rdma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 908 Bytes
/
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
[package]
categories = ["asynchronous", "hardware-support", "network-programming"]
description = "A rust async wrapper for RDMA ibvers lib"
edition = "2021"
keywords = ["rdma", "network"]
license-file = "LICENSE"
name = "async-rdma"
repository = "https://github.com/datenlord/async-rdma"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-bincode = "0.6.1"
bincode = "1.3.3"
clippy-utilities = "0.1.0"
enumflags2 = "0.7.3"
errno = "0.2.7"
futures = "0.3.17"
lazy_static = "1.4.0"
libc = "0.2.104"
lockfree-cuckoohash = "0.1.0"
num-derive = "0.3.3"
num-traits = "0.2.14"
rand = "0.8"
rdma-sys = "0.1.0"
serde = {version = "1.0.130", features = ["derive"]}
thiserror = "1.0.30"
tokio = {version = "1.15", features = ["full", "tracing"]}
tracing = "0.1"
tracing-subscriber = "0.3.9"
[dev-dependencies]
portpicker = "0.1.1"