Skip to content

Commit

Permalink
Merge pull request #456 from tox-rs/bump
Browse files Browse the repository at this point in the history
chore(deps): update dependencies
  • Loading branch information
kurnevsky authored Sep 25, 2021
2 parents 8db9d69 + d6a22b7 commit 6657c84
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ tox_core = { version = "0.1.1", path = "../tox_core" }

log = "0.4"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
env_logger = "0.8"
env_logger = "0.9"
hex = "0.4"
failure = "0.1"
rand = "0.8"

[dev-dependencies.tokio]
version = "1.0"
version = "1.12"
default-features = false
features = ["macros", "test-util", "net", "rt", "rt-multi-thread", "sync", "time"]

Expand Down
2 changes: 1 addition & 1 deletion tox_binary_io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ edition = "2018"
[dependencies]
nom = "5.1"
cookie-factory = "0.3"
crypto_box = { version = "0.6", optional = true }
crypto_box = { version = "0.7", optional = true }

[features]
default = []
Expand Down
8 changes: 4 additions & 4 deletions tox_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ cookie-factory = "0.3"
get_if_addrs = "0.5"
failure = "0.1"
lru = "0.6"
bitflags = "1.0"
bitflags = "1.3"
itertools = "0.10"
rand = "0.8"
sha2 = "0.9"
xsalsa20poly1305 = "0.7"
crypto_box = "0.6"
xsalsa20poly1305 = "0.8"
crypto_box = "0.7"

[dependencies.tokio]
version = "1.0"
version = "1.12"
default-features = false
features = ["net", "sync", "time"]

Expand Down
2 changes: 1 addition & 1 deletion tox_crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ license = "GPL-3.0+"
edition = "2018"

[dependencies]
crypto_box = "0.6"
crypto_box = "0.7"
2 changes: 1 addition & 1 deletion tox_encryptsave/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ edition = "2018"
failure = "0.1"
rand = "0.8"
sha2 = "0.9"
xsalsa20poly1305 = "0.7"
xsalsa20poly1305 = "0.8"
scrypt = "0.7"
zeroize = "1.3"
6 changes: 3 additions & 3 deletions tox_packet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ tox_crypto = { version = "0.1.0", path = "../tox_crypto" }

nom = "5.1"
cookie-factory = "0.3"
bitflags = "1.0"
bitflags = "1.3"
failure = "0.1"
sha2 = "0.9"
xsalsa20poly1305 = "0.7"
xsalsa20poly1305 = "0.8"
# for enabling rand_core feature
aead = { version = "0.4", features = ["rand_core"] }
rand = "0.8"
crypto_box = "0.6"
crypto_box = "0.7"

0 comments on commit 6657c84

Please sign in to comment.