Added json crate to dependencies

Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
This commit is contained in:
Louis Vallat 2021-10-17 23:31:27 +02:00
parent 80765c2bbd
commit 6ef99ec389
No known key found for this signature in database
GPG Key ID: 0C87282F76E61283
2 changed files with 8 additions and 0 deletions

7
Cargo.lock generated
View File

@ -256,6 +256,12 @@ version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
[[package]]
name = "json"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd"
[[package]] [[package]]
name = "lazy_static" name = "lazy_static"
version = "1.4.0" version = "1.4.0"
@ -293,6 +299,7 @@ dependencies = [
"dotenv", "dotenv",
"hyper", "hyper",
"hyper-tls", "hyper-tls",
"json",
"tokio", "tokio",
] ]

View File

@ -10,3 +10,4 @@ hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
hyper-tls = "0.5.0" hyper-tls = "0.5.0"
dotenv = "0.15.0" dotenv = "0.15.0"
json = "0.12.4"