-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
38 lines (33 loc) · 1.18 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
[package]
authors = ["Yoshua Wuyts <[email protected]>", "Timo Tiuraniemi <[email protected]>"]
description = "Continuously read and write to disk, using random offsets and lengths"
documentation = "https://docs.rs/random-access-disk"
license = "MIT OR Apache-2.0"
name = "random-access-disk"
readme = "README.md"
repository = "https://github.com/datrs/random-access-disk"
version = "3.0.1"
edition = "2021"
[dependencies]
mkdirp = "1.0.0"
random-access-storage = "5.0.0"
async-std = { version = "1.12.0", optional = true }
tokio = { version = "1.27.0", optional = true, features = ["fs", "io-util"] }
async-trait = "0.1"
libc = { version = "0.2", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["ioapiset", "winioctl"] }
[dev-dependencies]
proptest = "1.1.0"
proptest-derive = "0.2.0"
tempfile = "3.1.0"
async-std = { version = "1.12.0", features = ["attributes"] }
tokio = { version = "1.27.0", features = ["macros", "rt", "rt-multi-thread"] }
criterion = { version = "0.4", features = ["async_std", "async_tokio"] }
tokio-test = "0.4"
[features]
default = ["sparse", "async-std"]
sparse = ["libc"]
[[bench]]
name = "sync"
harness = false