Run cargo upgrade, except for stream-cipher.

This commit is contained in:
Nick Mathewson 2020-09-09 19:06:00 -04:00
parent e95dec2437
commit 9f30b47cb7
7 changed files with 30 additions and 30 deletions

View File

@ -11,13 +11,13 @@ tor-netdir = { path="../tor-netdir", version= "*" }
tor-netdoc = { path="../tor-netdoc", version= "*" }
tor-proto = { path="../tor-proto", version= "*" }
tor-linkspec = { path="../tor-linkspec", version= "*" }
rand = "*"
log = "*"
async-std = "*"
futures = "*"
futures_codec = "*"
native-tls = "*"
async-native-tls = "*"
thiserror = "*"
rand = "0.7.3"
log = "0.4.11"
async-std = "1.6.3"
futures = "0.3.5"
futures_codec = "0.4.1"
native-tls = "0.2.4"
async-native-tls = "0.3.3"
thiserror = "1.0.20"
simple-logging = "*"
simple-logging = "2.0.2"

View File

@ -14,7 +14,7 @@ generic-array = "0.14.4"
crypto-mac = "0.9.1"
thiserror = "1.0.20"
signature = "1.2.2"
bytes = "*"
bytes = "0.5.6"
[dev-dependencies]
hex-literal = "0.3.1"

View File

@ -12,7 +12,7 @@ tor-llcrypto = { path="../tor-llcrypto" }
tor-bytes = { path="../tor-bytes" }
tor-checkable = { path="../tor-checkable" }
signature = "1.2.2"
digest = "*"
digest = "0.9.0"
[dev-dependencies]
base64 = "0.12.3"

View File

@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
publish = false
[dependencies]
signature = "*"
thiserror = "*"
signature = "1.2.2"
thiserror = "1.0.20"
tor-llcrypto = { path="../tor-llcrypto", version = "*" }

View File

@ -15,19 +15,19 @@ aes-ctr = "0.4.0"
zeroize = "1.1.0"
rsa = "0.3.0"
simple_asn1= "0.4.1"
subtle = "2.2.3"
# Can't upgrade past this because of aes-ctr crate! Why?
stream-cipher = "^0.4"
subtle = "2.3.0"
# This is paused for now because of aes-ctr.
stream-cipher = "0.4.0"
num-traits = "0.2.12"
num-bigint = "0.3.0"
curve25519-dalek = "3.0.0"
x25519-dalek = "1.0.1"
x25519-dalek = "1.1.0"
ed25519-dalek = "1.0.0"
sha-1 = "0.9.1"
sha2 = "0.9.1"
sha3 = "0.9.1"
signature = "1.2.2"
hex = "*"
hex = "0.4.2"
[dev-dependencies]
hex-literal = "0.3.1"

View File

@ -10,13 +10,13 @@ publish = false
tor-checkable = { path="../tor-checkable", version= "*" }
tor-netdoc = { path="../tor-netdoc", version= "*" }
tor-linkspec = { path="../tor-linkspec", version= "*" }
thiserror = "*"
signature = "*"
thiserror = "1.0.20"
signature = "1.2.2"
tor-llcrypto = { path="../tor-llcrypto", version= "*" }
tor-protover = { path="../tor-protover", version= "*" }
hex = "0.4.2"
log = "*"
rand = "*"
log = "0.4.11"
rand = "0.7.3"
[dev-dependencies]
simple-logging = "*"
simple-logging = "2.0.2"

View File

@ -18,20 +18,20 @@ arrayref = "0.3.6"
digest = "0.9.0"
rand = "0.7.3"
typenum = "1.12.0"
# XXXX why did I have to downgrade?
generic-array = "0.14.4"
rand_core = "0.5.1"
crypto-mac = "0.9.1"
hmac = "0.9.0"
hkdf = "0.9.0"
zeroize = "1.1.0"
subtle = "2.2.3"
stream-cipher = "0.7.1"
subtle = "2.3.0"
# This is paused for now because of aes-ctr.
stream-cipher = "0.4.0"
sha2 = "0.9.1"
futures_codec = "*"
bytes = "*"
thiserror = "*"
futures = "*"
futures_codec = "0.4.1"
bytes = "0.5.6"
thiserror = "1.0.20"
futures = "0.3.5"
[dev-dependencies]
hex-literal = "0.3.1"