forked from tokio-rs/io-uring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 982 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
35
36
37
38
[package]
name = "io-uring"
version = "0.5.2"
authors = ["quininer <quininer@live.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/tokio-rs/io-uring"
homepage = "https://github.com/tokio-rs/io-uring"
documentation = "https://docs.rs/io-uring"
description = "The low-level `io_uring` userspace interface 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 = []
members = [ "io-uring-test", "io-uring-bench" ]
[features]
unstable = []
overwrite = [ "bindgen" ]
direct-syscall = [ "sc" ]
[dependencies]
bitflags = "1"
libc = { version = "0.2.98", default-features = false }
sc = { version = "0.2", optional = true }
[build-dependencies]
bindgen = { version = "0.59", optional = true }
[dev-dependencies]
anyhow = "1"
socket2 = "0.4"
slab = "0.4"
[package.metadata.docs.rs]
features = [ "unstable" ]