shadowsocks-crypto uses crates.io v0.3

This commit is contained in:
zonyitoo
2022-01-28 02:26:41 +08:00
parent 8766191164
commit 2cc68880d8
2 changed files with 4 additions and 3 deletions

3
Cargo.lock generated
View File

@@ -2037,7 +2037,8 @@ dependencies = [
[[package]]
name = "shadowsocks-crypto"
version = "0.3.0"
source = "git+https://github.com/shadowsocks/shadowsocks-crypto.git#76074045b029325a09532c684453a5cf2818659f"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f9a6bec0435b22858734a1be996cc4d8913aa8a48ddcd8faacc781afce79b25"
dependencies = [
"aes",
"aes-gcm",

View File

@@ -73,10 +73,10 @@ arc-swap = { version = "1.3", optional = true }
notify = { version = "5.0.0-pre.13", optional = true }
[target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64"))'.dependencies]
shadowsocks-crypto = { version = "0.3", features = ["ring"], git = "https://github.com/shadowsocks/shadowsocks-crypto.git" }
shadowsocks-crypto = { version = "0.3", features = ["ring"] }
[target.'cfg(not(any(target_arch = "x86_64", target_arch = "aarch64")))'.dependencies]
shadowsocks-crypto = { version = "0.3", features = [], git = "https://github.com/shadowsocks/shadowsocks-crypto.git" }
shadowsocks-crypto = { version = "0.3", features = [] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["mswsock", "winsock2", "netioapi"] }