Skip to content

Commit 9d50c2d

Browse files
committed
AEAD-2022 (SIP022) pre-release
1 parent d690167 commit 9d50c2d

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Cargo.lock

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shadowsocks-rust"
3-
version = "1.15.0"
3+
version = "1.15.0-alpha.1"
44
authors = ["Shadowsocks Contributors"]
55
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
66
repository = "https://github.com/shadowsocks/shadowsocks-rust"
@@ -65,6 +65,7 @@ default = [
6565
"local-tunnel",
6666
"local-socks4",
6767
"multi-threaded",
68+
"aead-cipher-2022",
6869
]
6970

7071
# Enable local server

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Related Projects:
5757

5858
- `aead-cipher-extra` - Enable non-standard AEAD ciphers
5959

60-
- `aead-cipher-2022` - Enable AEAD-2022 ciphers ([Draft](https://github.com/shadowsocks/shadowsocks-org/issues/194#issuecomment-1065833908))
60+
- `aead-cipher-2022` - Enable AEAD-2022 ciphers ([SIP022](https://github.com/shadowsocks/shadowsocks-org/issues/196))
6161

6262
- `aead-cipher-2022-extra` - Enable AEAD-2022 extra ciphers (non-standard ciphers)
6363

crates/shadowsocks/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ notify = { version = "5.0.0-pre.15", optional = true }
8181
aes = { version = "0.8", optional = true }
8282

8383
[target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64"))'.dependencies]
84-
shadowsocks-crypto = { version = "0.4", git = "https://github.com/shadowsocks/shadowsocks-crypto.git", features = ["ring"] }
84+
shadowsocks-crypto = { version = "0.4", features = ["ring"] }
8585

8686
[target.'cfg(not(any(target_arch = "x86_64", target_arch = "aarch64")))'.dependencies]
87-
shadowsocks-crypto = { version = "0.4", git = "https://github.com/shadowsocks/shadowsocks-crypto.git", features = [] }
87+
shadowsocks-crypto = { version = "0.4", features = [] }
8888

8989
[target.'cfg(windows)'.dependencies]
9090
windows-sys = { version = "0.36", features = ["Win32_Foundation", "Win32_NetworkManagement_IpHelper", "Win32_Networking_WinSock", "Win32_System_IO"] }

0 commit comments

Comments
 (0)