X-Git-Url: https://piware.de/gitweb/?p=learn-rust.git;a=blobdiff_plain;f=hyper-server%2FCargo.toml;fp=hyper-server%2FCargo.toml;h=0d9bdfe9e2c7e4a0a9627da4d65b888f17a7c608;hp=0000000000000000000000000000000000000000;hb=8a185a1213d5ad2d53df30bac8cfb1987a5cff9f;hpb=795a7f60cfacc6dbd3be562e8fd414affa803b01 diff --git a/hyper-server/Cargo.toml b/hyper-server/Cargo.toml new file mode 100644 index 0000000..0d9bdfe --- /dev/null +++ b/hyper-server/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "hyper-server" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +futures = "0.3" +hyper = { version = "0.14", features = ["server", "runtime", "http1"] } +tokio = { version = "1", features = ["full"] }