async-fs/Cargo.toml

32 lines
809 B
TOML
Raw Normal View History

2020-07-26 11:57:23 +00:00
[package]
name = "async-fs"
2022-01-08 12:48:32 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.1.2"
2020-07-26 11:57:23 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.63"
2020-07-26 11:57:23 +00:00
description = "Async filesystem primitives"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/async-fs"
homepage = "https://github.com/smol-rs/async-fs"
2020-07-26 11:57:23 +00:00
documentation = "https://docs.rs/async-fs"
keywords = ["asynchronous", "file", "filesystem", "io"]
categories = ["asynchronous", "concurrency"]
2022-01-08 12:48:12 +00:00
exclude = ["/.*"]
2020-07-26 11:57:23 +00:00
[dependencies]
async-lock = "3.0.0"
2022-11-28 04:38:44 +00:00
blocking = "1.3.0"
futures-lite = "2.0.0"
2020-10-04 10:36:24 +00:00
[target.'cfg(unix)'.dev-dependencies]
libc = "0.2.78"
[target.'cfg(windows)'.dev-dependencies.windows-sys]
version = "0.52"
features = [
"Win32_Storage_FileSystem",
]