-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 966 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 966 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
33
34
[package]
name = "linux-keyutils"
version = "0.2.5"
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"]
[[example]]
name = "request-key"
required-features = ["std"]
[dependencies]
libc = {version = "0.2.158", default-features = false}
bitflags = {version = "2.6", default-features = false}
[dev-dependencies]
zeroize = "1.8.1"
clap = {version = "4.5.16", default-features = false, features = ["std", "derive", "help"]}