23 lines
558 B
TOML
23 lines
558 B
TOML
[package]
|
|
name = "radicle-signals"
|
|
description = "Radicle signal handling"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
version = "0.11.0"
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
crossbeam-channel = { workspace = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = { workspace = true }
|
|
signals_receipts = { version = "0.2.0", features = ["channel_notify_facility"] }
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
workspace = true
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Console",
|
|
] |