mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 09:31:10 +00:00
update tokio-uring support to 0.4
This commit is contained in:
parent
b00fe72cf6
commit
72c80f9107
2 changed files with 3 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
|||
## Unreleased - 2022-xx-xx
|
||||
- XHTML files now use `Content-Disposition: inline` instead of `attachment`. [#2903]
|
||||
- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency.
|
||||
- Update `tokio-uring` dependency to `0.4`.
|
||||
|
||||
[#2903]: https://github.com/actix/actix-web/pull/2903
|
||||
|
||||
|
|
|
@ -40,8 +40,8 @@ v_htmlescape= "0.15"
|
|||
|
||||
# experimental-io-uring
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
tokio-uring = { version = "0.3", optional = true, features = ["bytes"] }
|
||||
actix-server = { version = "2.1", optional = true } # ensure matching tokio-uring versions
|
||||
tokio-uring = { version = "0.4", optional = true, features = ["bytes"] }
|
||||
actix-server = { version = "2.2", optional = true } # ensure matching tokio-uring versions
|
||||
|
||||
[dev-dependencies]
|
||||
actix-rt = "2.7"
|
||||
|
|
Loading…
Reference in a new issue