-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
44 lines (39 loc) · 1.11 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
[package]
name = "tokio-file"
edition = "2021"
version = "0.10.0"
authors = ["Alan Somers <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/asomers/tokio-file"
rust-version = "1.70"
description = """
Asynchronous file I/O for Tokio
"""
categories = ["asynchronous", "filesystem"]
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-freebsd",
]
[dependencies]
futures = "0.3.21"
mio = "0.8.11"
nix = { version = "0.29.0", default-features = false, features = ["ioctl"] }
mio-aio = { version = "0.9.0", features = ["tokio"] }
tokio = { version = "1.27.0", features = [ "net" ] }
[dev-dependencies]
rstest = "0.18.0"
getopts = "0.2.18"
mdconfig = "0.2.0"
nix = {version = "0.29.0", default-features = false, features = ["user"] }
sysctl = "0.1"
tempfile = "3.4"
tokio = { version = "1.27.0", features = [ "fs", "io-util", "macros", "net", "rt", "rt-multi-thread" ] }
tokio-test = "0.4.4"
[[test]]
name = "functional"
path = "tests/file.rs"
[[test]]
name = "aio_write_eagain"
path = "tests/aio_write_eagain.rs"