Skip to content

Commit 4fe7fec

Browse files
authored
update tokio-uring to 0.2.0 (#436)
1 parent 4c9ee88 commit 4fe7fec

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

actix-rt/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changes
22

33
## Unreleased - 2021-xx-xx
4+
- Update `tokio-uring` dependency to `0.2.0`. [#436]
5+
6+
[#436]: https://github.com/actix/actix-net/pull/436
47

58

69
## 2.5.1 - 2021-12-31

actix-rt/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ actix-macros = { version = "0.2.3", optional = true }
2929
futures-core = { version = "0.3", default-features = false }
3030
tokio = { version = "1.13.1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }
3131

32+
# runtime for io-uring feature
3233
[target.'cfg(target_os = "linux")'.dependencies]
33-
tokio-uring = { version = "0.1", optional = true }
34+
tokio-uring = { version = "0.2", optional = true }
3435

3536
[dev-dependencies]
3637
tokio = { version = "1.13.1", features = ["full"] }

actix-server/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changes
22

33
## Unreleased - 2021-xx-xx
4+
- Update `tokio-uring` dependency to `0.2.0`. [#436]
5+
6+
[#436]: https://github.com/actix/actix-net/pull/436
47

58

69
## 2.0.0-rc.3 - 2021-12-31

actix-server/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ socket2 = "0.4.2"
3737
tokio = { version = "1.13.1", features = ["sync"] }
3838

3939
# runtime for io-uring feature
40-
tokio-uring = { version = "0.1", optional = true }
40+
[target.'cfg(target_os = "linux")'.dependencies]
41+
tokio-uring = { version = "0.2", optional = true }
4142

4243
[dev-dependencies]
4344
actix-codec = "0.4.2"

0 commit comments

Comments
 (0)