-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
30 lines (27 loc) · 843 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 = "memfd"
version = "0.6.4"
edition = "2018"
authors = [
"Luca Bruno <[email protected]>",
"Simonas Kazlauskas <[email protected]>",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lucab/memfd-rs"
documentation = "https://docs.rs/memfd"
description = "A pure-Rust library to work with Linux memfd and sealing"
keywords = ["Linux", "memfd", "memfd_create", "seal"]
categories = ["filesystem", "os", "os::unix-apis"]
exclude = [".gitignore", ".travis.yml"]
[dependencies]
# Private dependencies.
rustix = { version = "0.38.8", features = ["fs"] }
[package.metadata.release]
publish = false
push = false
pre-release-commit-message = "cargo: memfd release {{version}}"
sign-commit = true
sign-tag = true
tag-message = "memfd {{version}}"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]