initial version

This commit is contained in:
Robin Appelman 2020-07-14 14:57:21 +02:00
commit f64d73e60c
8 changed files with 951 additions and 4 deletions

View file

@ -4,6 +4,13 @@ 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]
serde = { version = "1.0", features = ["derive"] }
ureq = { version = "1.3", features = ["json"] }
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde"] }
smol_str = { version = "0.1", features = ["serde"] }
md5 = "0.7"
hex = "0.4"
dotenv = "0.15"
main_error = "0.1"