-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (37 loc) · 1 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
[package]
name = "mio-aio"
edition = "2021"
version = "0.9.0"
authors = ["Alan Somers <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/asomers/mio-aio"
rust-version = "1.69"
description = """
POSIX AIO bindings for mio
"""
categories = ["asynchronous", "filesystem"]
keywords = ["io", "async", "non-blocking", "aio"]
documentation = "https://docs.rs/mio-aio"
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
targets = [
"x86_64-unknown-freebsd",
]
[features]
default = []
tokio = []
[dependencies]
mio = "0.8.11"
nix = {version = "0.29.0", default-features = false, features = ["aio", "event"] }
pin-utils = "0.1.0"
[dev-dependencies]
assert-impl = "0.1"
mio = { version = "0.8.11", features = ["os-poll"] }
nix = {version = "0.29.0", default-features = false, features = ["aio", "event", "feature"] }
sysctl = "0.1"
tempfile = "3.4"
[[test]]
name = "functional"
path = "tests/test.rs"