Skip to content

Commit 09d8a61

Browse files
committed
prepare v0.9.6
1 parent dec52d1 commit 09d8a61

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

Diff for: .rustfmt.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
edition = "2021"
1+
edition = "2021"

Diff for: Cargo.toml

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
[package]
22
name = "fast-socks5"
3-
version = "0.9.5"
3+
version = "0.9.6"
44
authors = ["Jonathan Dizdarevic <[email protected]>"]
55
edition = "2021"
66
license = "MIT"
77
description = "Fast SOCKS5 client/server implementation written in Rust async/.await (tokio)"
88
repository = "https://github.com/dizda/fast-socks5"
9-
categories = ["asynchronous", "network-programming", "command-line-utilities" ,"authentication" ]
9+
categories = [
10+
"asynchronous",
11+
"network-programming",
12+
"command-line-utilities",
13+
"authentication",
14+
]
1015
keywords = ["io", "proxy", "vpn", "async", "socks"]
1116

1217
[features]
@@ -25,7 +30,13 @@ async-trait = "0.1"
2530
[dev-dependencies]
2631
env_logger = "0.9"
2732
structopt = "0.3"
28-
tokio = { version = "1", features = ["io-util", "net", "time", "rt-multi-thread", "macros"] }
33+
tokio = { version = "1", features = [
34+
"io-util",
35+
"net",
36+
"time",
37+
"rt-multi-thread",
38+
"macros",
39+
] }
2940
tokio-test = "0.4"
3041

3142
[[example]]

0 commit comments

Comments
 (0)