Skip to content

Commit d6a22b7

Browse files
committed
chore(deps): update dependencies
1 parent 8db9d69 commit d6a22b7

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ tox_core = { version = "0.1.1", path = "../tox_core" }
1212

1313
log = "0.4"
1414
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
15-
env_logger = "0.8"
15+
env_logger = "0.9"
1616
hex = "0.4"
1717
failure = "0.1"
1818
rand = "0.8"
1919

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

tox_binary_io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ edition = "2018"
1717
[dependencies]
1818
nom = "5.1"
1919
cookie-factory = "0.3"
20-
crypto_box = { version = "0.6", optional = true }
20+
crypto_box = { version = "0.7", optional = true }
2121

2222
[features]
2323
default = []

tox_core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ cookie-factory = "0.3"
2929
get_if_addrs = "0.5"
3030
failure = "0.1"
3131
lru = "0.6"
32-
bitflags = "1.0"
32+
bitflags = "1.3"
3333
itertools = "0.10"
3434
rand = "0.8"
3535
sha2 = "0.9"
36-
xsalsa20poly1305 = "0.7"
37-
crypto_box = "0.6"
36+
xsalsa20poly1305 = "0.8"
37+
crypto_box = "0.7"
3838

3939
[dependencies.tokio]
40-
version = "1.0"
40+
version = "1.12"
4141
default-features = false
4242
features = ["net", "sync", "time"]
4343

tox_crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ license = "GPL-3.0+"
1717
edition = "2018"
1818

1919
[dependencies]
20-
crypto_box = "0.6"
20+
crypto_box = "0.7"

tox_encryptsave/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ edition = "2018"
2222
failure = "0.1"
2323
rand = "0.8"
2424
sha2 = "0.9"
25-
xsalsa20poly1305 = "0.7"
25+
xsalsa20poly1305 = "0.8"
2626
scrypt = "0.7"
2727
zeroize = "1.3"

tox_packet/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ tox_crypto = { version = "0.1.0", path = "../tox_crypto" }
2424

2525
nom = "5.1"
2626
cookie-factory = "0.3"
27-
bitflags = "1.0"
27+
bitflags = "1.3"
2828
failure = "0.1"
2929
sha2 = "0.9"
30-
xsalsa20poly1305 = "0.7"
30+
xsalsa20poly1305 = "0.8"
3131
# for enabling rand_core feature
3232
aead = { version = "0.4", features = ["rand_core"] }
3333
rand = "0.8"
34-
crypto_box = "0.6"
34+
crypto_box = "0.7"

0 commit comments

Comments
 (0)