storefd/storefd-notify/Cargo.toml
Mathieu Trossevin 058692a20c
Move NOTIFY_SOCKET implementation into it's own crate
I will add some utility function using both crates into the main one
later.
2024-01-11 17:54:11 +01:00

17 lines
517 B
TOML

[package]
name = "storefd-notify"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Mathieu Trossevin <mtrossevin@evolix.fr>"]
repository = "https://gitea.evolix.org/mtrossevin/storefd/"
description = "An implementation of the `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
[dependencies]
libc = "0.2.150"
log = "0.4.20"
rustix = { version = "0.38.26", features = ["net", "pipe", "event"] }