Skip to content

Commit

Permalink
Pin deps to workspace pt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ryardley committed Oct 4, 2024
1 parent 0fe9b92 commit e858cdf
Show file tree
Hide file tree
Showing 11 changed files with 79 additions and 70 deletions.
7 changes: 0 additions & 7 deletions packages/ciphernode/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions packages/ciphernode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,37 @@ alloy-primitives = { version = "0.6", default-features = false, features = [
] }
alloy-sol-types = { version = "0.6" }
anyhow = "1.0.86"
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
bincode = "1.3.3"
bs58 = "0.5.1"
base64 = "0.22.1"
clap = { version = "4.5.17", features = ["derive"] }
enclave_node = { path = "../enclave_node" }
fhe_rs = { package = "fhe", git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
fhe-traits = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
fhe-util = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
futures = "0.3.30"
futures-util = "0.3"
num = "0.4.3"
rand_chacha = "0.3.1"
rand = "0.8.5"
serde = { version = "1.0.208", features = ["derive"] }
sha2 = "0.10.8"
tokio = { version = "1.38", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
libp2p = { version = "0.53.2", features = [
"async-std",
"identify",
"macros",
"noise",
"ping",
"rendezvous",
"tcp",
"tokio",
"yamux",
"mdns",
"gossipsub",
"quic",
] }
16 changes: 8 additions & 8 deletions packages/ciphernode/fhe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ edition = "2021"

[dependencies]
enclave-core = { path = "../core" }
anyhow = "1.0.86"
fhe_rs = { package = "fhe", git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
fhe-traits = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
fhe-util = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
rand = "0.8.5"
rand_chacha = "0.3.1"
bincode = "1.3.3"
serde = { version = "1.0.208", features = ["derive"] }
anyhow = { workspace = true }
fhe_rs = { workspace = true }
fhe-traits = { workspace = true }
fhe-util = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
bincode = { workspace = true }
serde = { workspace = true }
4 changes: 2 additions & 2 deletions packages/ciphernode/keyshare/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
data = { path = "../data" }
enclave-core = { path = "../core" }
fhe = { path = "../fhe" }
actix = "0.13.5"
anyhow = "1.0.86"
actix = { workspace = true }
anyhow = { workspace = true }
4 changes: 2 additions & 2 deletions packages/ciphernode/logger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"

[dependencies]
enclave-core = { path = "../core" }
actix = "0.13.5"
base64 = "0.22.1"
actix = { workspace = true }
base64 = { workspace = true }
18 changes: 9 additions & 9 deletions packages/ciphernode/p2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ repository = "https://github.com/gnosisguild/enclave/packages/ciphernode"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
futures = "0.3.30"
libp2p = { version = "0.53.2", features = [
async-std = { workspace = true, features = ["attributes"] }
async-trait = { workspace = true }
futures = { workspace = true }
libp2p = { workspace = true, features = [
"async-std",
"identify",
"macros",
Expand All @@ -25,9 +25,9 @@ libp2p = { version = "0.53.2", features = [
"gossipsub",
"quic",
] }
tokio = { version = "1.38", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
enclave-core = { path = "../core" }
anyhow = "1.0.86"
actix = "0.13.5"
anyhow = { workspace = true }
actix = { workspace = true }
20 changes: 10 additions & 10 deletions packages/ciphernode/rendezvous/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ repository = "https://github.com/gnosisguild/enclave/packages/ciphernode"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fhe = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
fhe-traits = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
fhe-util = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
async-std = { version = "1.12", features = ["attributes"] }
async-trait = "0.1"
futures = "0.3.30"
libp2p = { version = "0.53.2", features = [
fhe = { workspace = true }
fhe-traits = { workspace = true }
fhe-util = { workspace = true }
async-std = { workspace = true, features = ["attributes"] }
async-trait = { workspace = true }
futures = { workspace = true }
libp2p = { workspace = true, features = [
"async-std",
"identify",
"macros",
Expand All @@ -25,6 +25,6 @@ libp2p = { version = "0.53.2", features = [
"tokio",
"yamux",
] }
tokio = { version = "1.38", features = ["rt-multi-thread", "macros", "time"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "time"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
2 changes: 1 addition & 1 deletion packages/ciphernode/router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
actix = "0.13.5"
actix = { workspace = true }
enclave-core = { path = "../core" }
sortition = { path = "../sortition" }
fhe = { path = "../fhe" }
Expand Down
8 changes: 4 additions & 4 deletions packages/ciphernode/sortition/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
num = "0.4.3"
rand = "0.8.5"
alloy = { version = "0.3.3", features = ["full"] }
actix = "0.13.5"
num = { workspace = true }
rand = { workspace = true }
alloy = { workspace = true, features = ["full"] }
actix = { workspace = true }
enclave-core = { path = "../core" }
14 changes: 7 additions & 7 deletions packages/ciphernode/test_helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ version = "0.1.0"
edition = "2021"

[dependencies]
actix = "0.13.5"
actix = { workspace = true }
enclave-core = { path = "../core" }
fhe = { path = "../fhe" }
bincode = "1.3.3"
clap = { version = "4.5.17", features = ["derive"] }
fhe_rs = { package = "fhe", git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
fhe-traits = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
rand_chacha = "0.3.1"
rand = "0.8.5"
bincode = { workspace = true }
clap = { workspace = true, features = ["derive"] }
fhe_rs = { workspace = true }
fhe-traits = { workspace = true }
rand_chacha = { workspace = true }
rand = { workspace = true }
35 changes: 15 additions & 20 deletions packages/ciphernode/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,18 @@ keyshare = { path = "../keyshare" }
aggregator = { path = "../aggregator" }
router = { path = "../router" }
test-helpers = { path = "../test_helpers" }
fhe_rs = { package = "fhe", git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
fhe-traits = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
fhe-util = { git = "https://github.com/gnosisguild/fhe.rs", version = "0.1.0-beta.7" }
async-std = "1.12.0"
tokio = { version = "1.38", features = ["full"] }
actix-rt = "2.10.0"
alloy-primitives = { version = "0.6", default-features = false, features = [
"rlp",
"serde",
"std",
] }
alloy = { version = "0.3.3", features = ["full"] }
clap = { version = "4.5.17", features = ["derive"] }
rand_chacha = "0.3.1"
rand = "0.8.5"
bincode = "1.3.3"
base91 = "0.1.0"
base64 = "0.22.1"
actix = "0.13.5"
anyhow = "1.0.86"
fhe_rs = { workspace = true }
fhe-traits = { workspace = true }
fhe-util = { workspace = true }
async-std = { workspace = true }
tokio = { workspace = true }
actix-rt = { workspace = true }
alloy-primitives = { workspace = true }
alloy = { workspace = true }
clap = { workspace = true }
rand_chacha = { workspace = true }
rand = { workspace = true }
bincode = { workspace = true }
base64 = { workspace = true }
actix = { workspace = true }
anyhow = { workspace = true }

0 comments on commit e858cdf

Please sign in to comment.