1[package]
2name = "async-fs"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v2.x.y" git tag
6version = "2.1.1"
7authors = ["Stjepan Glavina <stjepang@gmail.com>"]
8edition = "2018"
9rust-version = "1.63"
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 = "3.0.0"
21blocking = "1.3.0"
22futures-lite = "2.0.0"
23
24[target.'cfg(unix)'.dev-dependencies]
25libc = "0.2.78"
26
27[target.'cfg(windows)'.dev-dependencies.windows-sys]
28version = "0.52"
29features = [
30 "Win32_Storage_FileSystem",
31]
32