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