28 lines
572 B
TOML
28 lines
572 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.0"
|
|
structopt = { version = "0.2", default-features = false }
|
|
chrono = "0.4"
|
|
chrono-tz = "0.5"
|