This commit is contained in:
Robin Appelman 2021-03-27 01:13:11 +01:00
commit 04b08706ef
9 changed files with 2069 additions and 4 deletions

View file

@ -4,6 +4,16 @@ version = "0.1.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
camino = "1"
petname = "1"
thrussh = "0.32"
thrussh-keys = "0.20"
futures-util = "0.3"