Add cli & lib crates
This commit is contained in:
36
cli/Cargo.toml
Normal file
36
cli/Cargo.toml
Normal file
@ -0,0 +1,36 @@
|
||||
[package]
|
||||
name = "stl_cli"
|
||||
version = "2.5.0"
|
||||
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"]
|
||||
Reference in New Issue
Block a user