diff options
author | stuebinm | 2021-04-27 00:34:17 +0200 |
---|---|---|
committer | stuebinm | 2021-04-27 00:34:17 +0200 |
commit | 69eb6fe0a6ac34cf412bd6ba23dd11c5b7fbd417 (patch) | |
tree | b81f466e459ee6384b4c13c816094013cd0df7f9 /server/Cargo.toml | |
parent | 91efe78471f080eb58ffdde2125c59cd76d1f62c (diff) |
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.
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r-- | server/Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
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 <stuebinm@disroot.org>"] +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" |