1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 09:18:26 +00:00

fix tokio-uring version

This commit is contained in:
Rob Ede 2022-04-23 14:37:03 +01:00
parent f2cacc4c9d
commit 8abcb94512
No known key found for this signature in database
GPG key ID: 97C636207D3EF933

View file

@ -40,8 +40,9 @@ percent-encoding = "2.1"
pin-project-lite = "0.2.7"
# experimental-io-uring
tokio-uring = { version = "0.2", optional = true, features = ["bytes"] }
actix-server = "2.1" # ensure matching tokio-uring versions
[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
[dev-dependencies]
actix-rt = "2.7"