Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Jul 22, 2024
1 parent ab837c4 commit 6d3e2a6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.9.1

- Adding support for UnixStream to take advantage of vectored writes [#63](https://github.com/softprops/hyperlocal/pull/63) via [@craftytrickster](https://github.com/craftytrickster)

# 0.9.0

- upgrade to hyper 1.1 [#65](https://github.com/softprops/hyperlocal/pull/65) via [iamjpotts](https://github.com/iamjpotts)
Expand Down
17 changes: 9 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyperlocal"
version = "0.9.0"
version = "0.9.1"
authors = ["softprops <[email protected]>"]
description = "Hyper bindings for Unix domain sockets"
homepage = "https://github.com/softprops/hyperlocal"
Expand All @@ -21,7 +21,12 @@ pin-project-lite = "0.2"

[dev-dependencies]
thiserror = "1.0"
tokio = { version = "1.35", features = ["io-std", "io-util", "macros", "rt-multi-thread"] }
tokio = { version = "1.35", features = [
"io-std",
"io-util",
"macros",
"rt-multi-thread",
] }

[features]
default = ["client", "server"]
Expand All @@ -32,13 +37,9 @@ client = [
"hyper-util/client-legacy",
"hyper-util/http1",
"hyper-util/tokio",
"tower-service"
]
server = [
"hyper/http1",
"hyper/server",
"hyper-util/tokio",
"tower-service",
]
server = ["hyper/http1", "hyper/server", "hyper-util/tokio"]

[[example]]
name = "client"
Expand Down

0 comments on commit 6d3e2a6

Please sign in to comment.