37 lines
725 B
TOML
37 lines
725 B
TOML
[package]
|
|
name = "stl_cli"
|
|
version = "2.6.5"
|
|
authors = ["Joakim Hulthe <joakim@hulthe.net>"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "stl"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
thiserror = "1.0.24"
|
|
notify = "4.0.16"
|
|
log = "0.4.14"
|
|
pretty_env_logger = "0.4.0"
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
structopt = "0.3.21"
|
|
syscalls = { version = "0.3", default-features = false }
|
|
futures = "0.3"
|
|
|
|
[dependencies.stl_lib]
|
|
path = "../lib"
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
features = ["derive"]
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.11.3"
|
|
features = ["json"]
|
|
|
|
[dependencies.tokio]
|
|
version = "1.5.0"
|
|
features = ["fs", "rt", "rt-multi-thread", "macros"]
|