Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reintroduce boxed service #12

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tower-async-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.1 (December 19, 2023)

- Update Axum example to make use of version `axum == 0.7.2`;

## 0.2.0 (November 20, 2023)

- Update to http-body 1.0;
Expand Down
6 changes: 3 additions & 3 deletions tower-async-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
Tower Async middleware and utilities for HTTP clients and servers.
An "Async Trait" fork from the original Tower Library.
"""
version = "0.2.0"
version = "0.2.1"
authors = ["Glen De Cauwsemaecker <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -42,7 +42,7 @@ tracing = { version = "0.1", default_features = false, optional = true }
uuid = { version = "1.0", features = ["v4"], optional = true }

[dev-dependencies]
axum = { git = "https://github.com/tokio-rs/axum", branch = "david/hyper-1.0-rc.x" }
axum = "0.7.2"
brotli = "3"
bytes = "1"
clap = { version = "4.3", features = ["derive"] }
Expand All @@ -55,7 +55,7 @@ serde_json = "1.0"
sync_wrapper = "0.1"
tokio = { version = "1", features = ["full"] }
tower = { version = "0.4", features = ["util", "make", "timeout"] }
tower-async = { path = "../tower-async", features = ["full"] }
tower-async = { path = "../tower-async", features = ["full", "nightly"] }
tower-async-bridge = { path = "../tower-async-bridge", features = ["full"] }
tower-async-http = { path = ".", features = ["full"] }
tower-async-hyper = { path = "../tower-async-hyper" }
Expand Down
Loading
Loading