-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
30 lines (26 loc) · 896 Bytes
/
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
[package]
name = "linux-keyutils"
version = "0.2.4"
edition = "2021"
authors = ["landhb <landhb@users.noreply.github.com>"]
description = """
Rust interface to the Linux key-management facility. Provides a safe interface around the raw system
calls allowing user-space programs to perform key manipulation.
"""
homepage = "https://github.com/landhb/linux-keyutils"
repository = "https://github.com/landhb/linux-keyutils"
keywords = ["keyutils", "keyctl", "linux","keyring", "secure-storage"]
readme = "README.md"
license = "Apache-2.0 OR MIT"
[features]
default = []
std = ["bitflags/std"]
[[example]]
name = "keyctl"
required-features = ["std"]
[dependencies]
libc = {version = "0.2.132", default-features = false}
bitflags = {version = "2.4", default-features = false}
[dev-dependencies]
zeroize = "1.5.7"
clap = {version = "4.4.11", default-features = false, features = ["std", "derive"]}