Skip to content
This repository was archived by the owner on Oct 17, 2022. It is now read-only.

Commit 4cfff06

Browse files
authored
chore(deps): Switch to fastcrypto published version (#910)
1 parent 35b9bdd commit 4cfff06

File tree

14 files changed

+16
-15
lines changed

14 files changed

+16
-15
lines changed

Cargo.lock

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

config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ thiserror = "1.0.34"
1414
tracing = "0.1.36"
1515
arc-swap = { version = "1.5.1", features = ["serde"] }
1616

17-
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b" }
17+
fastcrypto = { version = "0.1.1" }
1818
crypto = { path = "../crypto" }
1919
workspace-hack = { version = "0.1", path = "../workspace-hack" }
2020
rand = "0.8.5"

consensus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tokio = { version = "1.20.1", features = ["sync"] }
1919
tracing = "0.1.36"
2020

2121
config = { path = "../config" }
22-
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b" }
22+
fastcrypto = { version = "0.1.1" }
2323
crypto = { path = "../crypto" }
2424
storage = { path = "../storage" }
2525
dag = { path = "../dag" }

crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ merlin = "3.0.0"
2828
# TODO: switch to https://github.com/celo-org/celo-bls-snark-rs
2929
# when https://github.com/celo-org/celo-bls-snark-rs/issues/228 is solved
3030
celo-bls = { git = "https://github.com/huitseeker/celo-bls-snark-rs", branch = "updates-2", package = "bls-crypto", optional = true }
31-
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b", features = ["copy_key"] }
31+
fastcrypto = { version = "0.1.1", features = ["copy_key"]}
3232

3333
ark-ec = { version = "0.3.0", features = ["std"], optional = true }
3434
ark-ff = { version = "0.3.0", features = ["std"], optional = true }

dag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88

99
[dependencies]
1010
arc-swap = "1.5.1"
11-
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b" }
11+
fastcrypto = { version = "0.1.1" }
1212
dashmap = "5.4.0"
1313
either = "1.8.0"
1414
itertools = "0.10.3"

executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ blake2 = "0.9"
1212
bytes = "1.2.1"
1313
config = { path = "../config" }
1414
consensus = { path = "../consensus" }
15-
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b" }
15+
fastcrypto = { version = "0.1.1" }
1616
futures = "0.3.24"
1717
multiaddr = "0.14.0"
1818
primary = { path = "../primary" }

network/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publish = false
1010
async-trait = "0.1.57"
1111
backoff = { version = "0.4.0", features = ["tokio"] }
1212
bytes = "1.2.1"
13-
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b" }
13+
fastcrypto = { version = "0.1.1" }
1414
futures = "0.3.24"
1515
multiaddr = "0.14.0"
1616
prometheus = "0.13.1"

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ itertools = "0.10.3"
3232

3333
config = { path = "../config" }
3434
consensus = { path = "../consensus" }
35-
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b" }
35+
fastcrypto = { version = "0.1.1" }
3636
crypto = { path = "../crypto" }
3737
executor = { path = "../executor" }
3838
network = { path = "../network" }

primary/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tracing = "0.1.36"
3636
tap = "1.0.1"
3737

3838
consensus = { path = "../consensus" }
39-
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b" }
39+
fastcrypto = { version = "0.1.1" }
4040
crypto = { path = "../crypto" }
4141
network = { path = "../network" }
4242
types = { path = "../types" }

storage/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88

99
[dependencies]
1010
dashmap = "5.4.0"
11-
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "c022a2ae23ca7cc2778293fd3b1db42e8cd02d3b", package = "fastcrypto" }
11+
fastcrypto = { version = "0.1.1" }
1212
futures = "0.3.24"
1313
store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "352091e92070c2ecfcccad444361a78249ecfe59" }
1414
thiserror = "1.0.34"

0 commit comments

Comments
 (0)