forked from tokio-rs/io-uring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (40 loc) · 1.04 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 = "io-uring"
version = "0.5.0-alpha"
authors = ["quininer <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/quininer/io-uring"
homepage = "https://github.com/quininer/io-uring"
documentation = "https://docs.rs/io-uring"
description = "The `io_uring` library for Rust."
categories = [ "asynchronous", "network-programming", "filesystem" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
exclude = [ "loom-ringbuf" ]
[features]
concurrent = [ "parking_lot" ]
unstable = []
overwrite = [ "bindgen" ]
[dependencies]
libc = "0.2"
bitflags = "1"
parking_lot = { version = "0.11", optional = true }
[build-dependencies]
bindgen = { version = "0.55", optional = true }
[dev-dependencies]
tempfile = "3"
anyhow = "1"
nix = "0.18"
lazy_static = "1"
socket2 = "0.3"
criterion = "0.3"
slab = "0.4"
[package.metadata.docs.rs]
features = [ "concurrent", "unstable" ]
[[bench]]
name = "nop"
harness = false
[[bench]]
name = "iovec"
harness = false