storefd/storefd/Cargo.toml

34 lines
1 KiB
TOML

[package]
name = "storefd"
version = "0.2.0-dev"
edition = "2021"
license = "MIT"
authors = ["Mathieu Trossevin <mtrossevin@evolix.fr>"]
repository = "https://gitea.evolix.org/mtrossevin/storefd/"
description = "An implementation of file descriptor passing with `LISTEN_FD` and of `NOTIFY_SOCKET` readiness protocol."
rust-version = "1.74.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
listenfd = ["dep:storefd-listen"]
notify = ["dep:storefd-notify"]
[dependencies]
storefd-notify = { path = "../storefd-notify", version = "0.1.0", optional = true }
storefd-listen = { path = "../storefd-listen", version = "0.1.0", optional = true }
[package.metadata.docs.rs]
features = ["listenfd", "notify"]
rustdoc-args = ["--cfg", "doc_cfg"]
targets = [
"x86_64-unknown-linux-gnu",
"i686-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-unknown-freebsd",
"x86_64-unknown-openbsd",
"x86_64-unknown-netbsd",
"wasm32-unknown-emscripten"
]