1
0

update tokio to 1.19, once_cell to 1.12

This commit is contained in:
EAimTY 2022-06-25 21:21:33 +09:00
parent c2c0096790
commit 044cb83849
3 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ env_logger = { version = "0.9", features = ["humantime"], default-features = fal
futures-util = { version = "0.3", default-features = false }
getopts = "0.2"
log = { version = "0.4", features = ["serde", "std"] }
once_cell = "1.10"
once_cell = "1.12"
parking_lot = "0.12"
quinn = "0.8"
rand = "0.8"
@ -33,5 +33,5 @@ socket2 = "0.4"
socks5-proto = "0.3"
socks5-server = "0.8"
thiserror = "1.0"
tokio = { version = "1.18", features = ["io-util", "macros", "net", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.19", features = ["io-util", "macros", "net", "parking_lot", "rt-multi-thread", "sync", "time"] }
webpki = { version = "0.22", default-features = false }

View File

@ -14,4 +14,4 @@ repository = "https://github.com/EAimTY/tuic"
[dependencies]
bytes = "1.1"
thiserror = "1.0"
tokio = { version = "1.17", default-features = false }
tokio = { version = "1.19", features = ["io-util"] }

View File

@ -29,4 +29,4 @@ serde = { version = "1.0", features = ["derive", "std"], default-features = fals
serde_json = { version = "1.0", features = ["std"], default-features = false }
socket2 = "0.4"
thiserror = "1.0"
tokio = { version = "1.18", features = ["io-util", "macros", "net", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.19", features = ["io-util", "macros", "net", "parking_lot", "rt-multi-thread", "sync", "time"] }