Skip to content

Commit f2fb873

Browse files
authored
Merge pull request #34 from ark0f/tokio-1.0
2 parents 9b8d6a0 + 6a5d681 commit f2fb873

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v0.5.0 (2020-12-26)
2+
Update to tokio 1.0
3+
14
# v0.4.0 (2020-10-16)
25
Update to tokio 0.3
36
`send_to` and `recv_from` use `&self` now, so you can use something like `Arc` to make send and receive halves

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-socks5"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Arsenii Lyashenko <arsenylyashenko.3@gmail.com>", "Temirkhan Myrzamadi <hirrolot@gmail.com>"]
55
license = "Apache-2.0 OR MIT"
66
description = "An async/.await SOCKS5 implementation"
@@ -16,9 +16,9 @@ edition = "2018"
1616
github-actions = { repository = "https://github.com/ark0f/async-socks5", workflow = "CI" }
1717

1818
[dependencies]
19-
tokio = { version = "0.3", features = ["net", "io-util"] }
19+
tokio = { version = "1.0", features = ["net", "io-util"] }
2020
thiserror = "1.0.0"
2121
async-trait = "0.1.8"
2222

2323
[dev-dependencies]
24-
tokio = { version = "0.3", features = ["net", "io-util", "rt", "macros"] }
24+
tokio = { version = "1.0", features = ["net", "io-util", "rt", "macros"] }

0 commit comments

Comments
 (0)