storefd/Cargo.toml

34 lines
1 KiB
TOML
Raw Normal View History

2023-12-07 18:02:35 +01:00
[package]
name = "storefd"
2024-01-04 13:48:45 +01:00
version = "0.2.0-dev"
2023-12-07 18:02:35 +01:00
edition = "2021"
2023-12-08 17:09:17 +01:00
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."
2023-12-08 17:29:45 +01:00
rust-version = "1.74.0"
2023-12-07 18:02:35 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-12-08 12:54:41 +01:00
[features]
default = []
listenfd = ["dep:storefd-listen"]
notify = ["dep:storefd-notify"]
2023-12-08 12:54:41 +01:00
2023-12-07 18:02:35 +01:00
[dependencies]
storefd-notify = { path = "./storefd-notify", version = "0.1.0", optional = true }
storefd-listen = { path = "./storefd-listen", version = "0.1.0", optional = true }
2024-01-08 11:25:17 +01:00
[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"
]