-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 769 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 769 Bytes
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
[package]
authors = ["Colin Walters <walters@verbum.org>"]
description = "Extension APIs for cap-std"
edition = "2021"
rust-version = "1.86.0"
license = "MIT OR Apache-2.0"
name = "cap-std-ext"
readme = "README.md"
repository = "https://github.com/coreos/cap-std-ext"
# For historical reasons, the major version number is one greater than the cap-std major.
version = "5.1.2"
[dependencies]
cap-tempfile = "4"
cap-primitives = "4"
[target.'cfg(not(windows))'.dependencies]
rustix = { version = "1.0", features = ["fs", "process", "pipe"] }
libc = "0.2"
[dev-dependencies]
anyhow = "1.0"
proptest = "1.11.0"
rand = "0.10"
uuid = "1.10"
[features]
default = []
# This just enables support for the fs_utf8 feature in cap-std.
fs_utf8 = [
"cap-tempfile/fs_utf8",
]