diff options
author | metamuffin <metamuffin@disroot.org> | 2023-02-11 21:45:16 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-02-11 21:45:16 +0100 |
commit | 1284ac8ac8ab0797b908fd9cc8db8b682bc4373f (patch) | |
tree | 060ebed333d4127663e9f1c21db514a3486a6b58 /Cargo.toml | |
download | gnix-1284ac8ac8ab0797b908fd9cc8db8b682bc4373f.tar gnix-1284ac8ac8ab0797b908fd9cc8db8b682bc4373f.tar.bz2 gnix-1284ac8ac8ab0797b908fd9cc8db8b682bc4373f.tar.zst |
works
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d69cc35 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "gnix" +version = "0.1.0" +edition = "2021" + +[dependencies] +hyper = { version = "1.0.0-rc.2", features = ["full"] } +tokio = { version = "1.25.0", features = ["full"] } +http-body-util = "0.1.0-rc.2" + +rustls-pemfile = "1.0.2" +rustls = "0.20.8" +tokio-rustls = "0.23.4" + +bytes = "1.4.0" +anyhow = "1.0.69" + +env_logger = "0.10.0" +log = "0.4.17" + +serde = { version = "1.0.152", features = ["derive"] } +toml = "0.7.2" |