watchexec/crates/events/Cargo.toml

44 lines
968 B
TOML
Raw Normal View History

2023-03-18 09:32:24 +01:00
[package]
name = "watchexec-events"
version = "2.0.0"
2023-03-18 09:32:24 +01:00
authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0 OR MIT"
description = "Watchexec's event types"
keywords = ["watchexec", "event", "format", "json"]
documentation = "https://docs.rs/watchexec-events"
repository = "https://github.com/watchexec/watchexec"
readme = "README.md"
rust-version = "1.61.0"
edition = "2021"
[dependencies.notify]
version = "6.0.0"
2023-03-18 09:32:24 +01:00
optional = true
[dependencies.serde]
version = "1.0.183"
2023-03-18 09:32:24 +01:00
optional = true
features = ["derive"]
[dependencies.watchexec-signals]
version = "2.0.0"
2023-03-18 09:32:24 +01:00
path = "../signals"
default-features = false
[target.'cfg(unix)'.dependencies.nix]
version = "0.27.1"
2023-03-18 09:32:24 +01:00
features = ["signal"]
[dev-dependencies]
watchexec-events = { version = "*", features = ["serde"], path = "." }
snapbox = "0.4.11"
serde_json = "1.0.107"
2023-03-18 09:32:24 +01:00
[features]
default = ["notify"]
notify = ["dep:notify"]
serde = ["dep:serde", "notify?/serde", "watchexec-signals/serde"]