aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-08-22 15:40:57 -0700
committerBryan Newbold <bnewbold@archive.org>2020-08-22 15:41:02 -0700
commit754c2fa6b875b132ca39093678549b620e190817 (patch)
treeeac6515b3aa37d065c78490547573f36a3d79fa9
parent38d3f8143a26c448f9f4898962ceca3d3e877163 (diff)
downloades-public-proxy-754c2fa6b875b132ca39093678549b620e190817.tar.gz
es-public-proxy-754c2fa6b875b132ca39093678549b620e190817.zip
cargo: serde_json
-rw-r--r--Cargo.lock39
-rw-r--r--Cargo.toml2
2 files changed, 41 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 9f6e0c1..77a79b3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -35,6 +35,8 @@ name = "es-public-proxy"
version = "0.1.0"
dependencies = [
"hyper",
+ "serde",
+ "serde_json",
"tokio",
]
@@ -391,6 +393,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
[[package]]
+name = "ryu"
+version = "1.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
+
+[[package]]
+name = "serde"
+version = "1.0.115"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e54c9a88f2da7238af84b5101443f0c0d0a3bbdc455e34a5c9497b1903ed55d5"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
+version = "1.0.115"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "609feed1d0a73cc36a0182a840a9b37b4a82f0b1150369f0536a9e3f2a31dc48"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[package]]
+name = "serde_json"
+version = "1.0.57"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "164eacbdb13512ec2745fb09d51fd5b22b0d65ed294a1dcf7285a360c80a675c"
+dependencies = [
+ "itoa",
+ "ryu",
+ "serde",
+]
+
+[[package]]
name = "signal-hook-registry"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index 0412e7d..315a129 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,6 +9,8 @@ edition = "2018"
[dependencies]
hyper = "0.13"
tokio = { version = "0.2", features = ["full"] }
+serde = { version = "1.0", features = ["derive"] }
+serde_json = "1.0"
# testing
#anyhow = "1"