1[package]
2name = "async-fs"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v1.x.y" git tag
6version = "1.6.0"
7authors = ["Stjepan Glavina <stjepang@gmail.com>"]
8edition = "2018"
9rust-version = "1.47"
10description = "Async filesystem primitives"
11license = "Apache-2.0 OR MIT"
12repository = "https://github.com/smol-rs/async-fs"
13homepage = "https://github.com/smol-rs/async-fs"
14documentation = "https://docs.rs/async-fs"
15keywords = ["asynchronous", "file", "filesystem", "io"]
16categories = ["asynchronous", "concurrency"]
17exclude = ["/.*"]
18
19[dependencies]
20async-lock = "2.3.0"
21blocking = "1.0.0"
22futures-lite = "1.2.0"
23
24[build-dependencies]
25autocfg = "1"
26
27[target.'cfg(unix)'.dev-dependencies]
28libc = "0.2.78"
29
30[target.'cfg(windows)'.dev-dependencies]
31winapi = { version = "0.3.9", features = ["winbase"] }
32