From 6ef99ec3899605763f5d35cce1fc163857b0d594 Mon Sep 17 00:00:00 2001 From: Louis Vallat Date: Sun, 17 Oct 2021 23:31:27 +0200 Subject: [PATCH] Added json crate to dependencies Signed-off-by: Louis Vallat --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + 2 files changed, 8 insertions(+) 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"