diff options
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" |