From 69eb6fe0a6ac34cf412bd6ba23dd11c5b7fbd417 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Tue, 27 Apr 2021 00:34:17 +0200 Subject: server: replace guile with rust (init) this is just a quick barebones server, which doesn't really do yet what it is supposed to or what the guile version did. --- server/Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 server/Cargo.toml (limited to 'server/Cargo.toml') diff --git a/server/Cargo.toml b/server/Cargo.toml new file mode 100644 index 0000000..82b4f20 --- /dev/null +++ b/server/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "server" +version = "0.1.0" +authors = ["stuebinm "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +hyper = { version = "0.14", features = ["full"] } +tokio = { version = "1", features = ["full"] } +futures = "0.3" +sha2 = "0.9.3" +hex = "0.4.3" -- cgit v1.2.3