i3xs/Cargo.toml
Bill Thiede 5473f0b0c5 Make network device filtering a regex.
Work and home have different naming schemes.
2023-07-31 07:44:45 -07:00

31 lines
625 B
TOML

[package]
name = "i3xs"
version = "0.1.0"
authors = ["Bill Thiede <git@xinu.tv>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "i3xs"
path = "src/lib.rs"
[[bin]]
name = "i3xs-work"
path = "src/bin/work.rs"
[[bin]]
name = "i3xs-home"
path = "src/bin/home.rs"
[dependencies]
# Use git until ColorRGB is pub in crates
i3monkit = {git = "https://github.com/38/i3monkit"} # "0.1.2"
num_cpus = "1.15"
structopt = { version = "0.2", default-features = false }
chrono = "0.4"
chrono-tz = "0.5"
glob = "0.3.1"
thiserror = "1.0.40"
regex = "1.9.1"