aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2021-04-01 22:30:45 -0400
committerGitHub <noreply@github.com>2021-04-01 22:30:45 -0400
commit8383914aa5abc232fa56ce437e777d5024eb63e1 (patch)
treebedceacc5a8e1260e73d251a84d44838a3e25acb /Cargo.toml
parent0360c87582e2e5025c06fec2431b867992dc71b0 (diff)
downloadxesite-8383914aa5abc232fa56ce437e777d5024eb63e1.tar.xz
xesite-8383914aa5abc232fa56ce437e777d5024eb63e1.zip
Unix domain socket http server (#352)
* enable ipv6 support Signed-off-by: Christine Dodrill <me@christine.website> * enable unix socket powers Signed-off-by: Christine Dodrill <me@christine.website> * unix domain socket post Signed-off-by: Christine Dodrill <me@christine.website> * bump rust Signed-off-by: Christine Dodrill <me@christine.website>
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5b07752..1d6939e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "xesite"
-version = "2.2.1"
+version = "2.3.0"
authors = ["Christine Dodrill <me@christine.website>"]
edition = "2018"
build = "src/build.rs"
@@ -29,6 +29,7 @@ serde_yaml = "0.8"
sitemap = "0.4"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
+tokio-stream = { version = "0.1", features = ["net"] }
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = { version = "0.2", features = ["fmt"] }