-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 1.03 KB
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
[package]
name = "cap-fs-ext"
version = "3.4.5"
description = "Extension traits for `Dir`, `File`, etc."
authors = [
"Dan Gohman <dev@sunfishcode.online>",
"Jakub Konka <kubkon@jakubkonka.com>",
]
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
keywords = ["filesystem"]
categories = ["filesystem"]
repository = "https://github.com/bytecodealliance/cap-std"
edition = "2021"
[dependencies]
arf-strings = { version = "0.7.0", optional = true }
cap-std = { path = "../cap-std", optional = true, version = "3.4.5" }
cap-primitives = { path = "../cap-primitives", version = "3.4.5" }
io-lifetimes = { version = "3.0.1", default-features = false }
camino = { version = "1.0.5", optional = true }
[features]
default = ["std"]
fs_utf8 = ["cap-std/fs_utf8", "camino"]
arf_strings = ["cap-std/arf_strings", "fs_utf8", "arf-strings"]
std = ["cap-std"]
[target.'cfg(windows)'.dependencies.windows-sys]
version = ">=0.60, <0.62"
features = [
"Win32_Storage_FileSystem",
]
[dev-dependencies]
cap-tempfile = { path = "../cap-tempfile" }