From d1d925e55e8a75e72813a647fa2fe843023f8980 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 17 Aug 2020 23:23:14 -0700 Subject: copy example skeleton from rust async book --- Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0412e7d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "es-public-proxy" +version = "0.1.0" +authors = ["Bryan Newbold "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +hyper = "0.13" +tokio = { version = "0.2", features = ["full"] } + +# testing +#anyhow = "1" +#reqwest = { version = "0.10", features = ["blocking"] } -- cgit v1.2.3