diff --git a/Cargo.lock b/Cargo.lock index 12daf1e..8580306 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -256,6 +256,12 @@ version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" +[[package]] +name = "json" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" + [[package]] name = "lazy_static" version = "1.4.0" @@ -293,6 +299,7 @@ dependencies = [ "dotenv", "hyper", "hyper-tls", + "json", "tokio", ] diff --git a/Cargo.toml b/Cargo.toml index ed1c0b2..ca601ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,3 +10,4 @@ hyper = { version = "0.14", features = ["full"] } tokio = { version = "1", features = ["full"] } hyper-tls = "0.5.0" dotenv = "0.15.0" +json = "0.12.4"