29 lines
544 B
TOML
29 lines
544 B
TOML
[package]
|
|
name = "fsr"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "common"
|
|
path = "src/common.rs"
|
|
|
|
[[bin]]
|
|
name = "fsr-rec"
|
|
path = "src/rec.rs"
|
|
required-features = ["notify"]
|
|
|
|
[[bin]]
|
|
name = "fsr-play"
|
|
path = "src/play.rs"
|
|
|
|
[features]
|
|
default = ["notify"]
|
|
notify = ["dep:inotify"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.40", features = ["derive"] }
|
|
ctrlc = "3.4.7"
|
|
ron = "0.10.1"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
inotify = { version = "0.11.0", optional = true }
|