-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
49 lines (39 loc) · 1.28 KB
/
Cargo.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "exacl"
version = "0.12.0"
authors = ["Bill Fisher <[email protected]>"]
description = "Manipulate file system access control lists (ACL) on macOS, Linux, and FreeBSD"
repository = "https://github.com/byllyfish/exacl"
documentation = "https://byllyfish.github.io/exacl"
license = "MIT"
edition = "2021"
keywords = ["acl", "access", "control"]
categories = ["filesystem"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# There are two optional features that you can enable:
# - serde
# - buildtime_bindgen
default = []
# Use bindgen to build OS-specific bindings.
#
# On Linux, the bindings depend on the <sys/acl.h> system header. This header
# is only present on systems that have the `libacl1-dev` package installed.
buildtime_bindgen = ["bindgen"]
[dependencies]
bitflags = "2.4.2"
log = "0.4.20"
uuid = "1.7.0"
scopeguard = "1.2.0"
serde = { version = "1.0", optional = true, features = ["derive"] }
[build-dependencies]
bindgen = { version = "0.69.2", optional = true }
[dev-dependencies]
tempfile = "3.9.0"
ctor = "0.2.6"
# Used by exacl.rs example.
clap = { version = "4.4.18", features = ["derive"] }
env_logger = "0.11.0"
serde_json = "1.0.111"
[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs"]