diff --git a/crates/aggregator/Cargo.toml b/crates/aggregator/Cargo.toml index b8a14ec494..ce55ffb2ec 100644 --- a/crates/aggregator/Cargo.toml +++ b/crates/aggregator/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode Aggregators" -repository = "https://github.com/theinterfold/interfold/crates/aggregator" +repository.workspace = true [dependencies] alloy = { workspace = true } diff --git a/crates/bfv-client/Cargo.toml b/crates/bfv-client/Cargo.toml index f0dcf033c0..c55329d7b5 100644 --- a/crates/bfv-client/Cargo.toml +++ b/crates/bfv-client/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - BFV client helpers" -repository = "https://github.com/theinterfold/interfold/crates/bfv-client" +repository.workspace = true [dependencies] anyhow.workspace = true diff --git a/crates/ciphernode-builder/Cargo.toml b/crates/ciphernode-builder/Cargo.toml index aeb68865ff..c3969e6961 100644 --- a/crates/ciphernode-builder/Cargo.toml +++ b/crates/ciphernode-builder/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Ciphernode Builder" -repository = "https://github.com/theinterfold/interfold/crates/ciphernode-builder" +repository.workspace = true [features] test-only-skip-proof-aggregation = [] diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 81c267d718..19d594eead 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold CLI" -repository = "https://github.com/theinterfold/interfold/crates/cli" +repository.workspace = true build = "build.rs" [features] diff --git a/crates/committee-hash/Cargo.toml b/crates/committee-hash/Cargo.toml index 6a2497dc47..03fe6cf131 100644 --- a/crates/committee-hash/Cargo.toml +++ b/crates/committee-hash/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "Canonical EVM domain hashes for DKG / decryption aggregator proofs" -repository = "https://github.com/theinterfold/interfold/crates/committee-hash" +repository.workspace = true [dependencies] alloy = { workspace = true } diff --git a/crates/compute-provider/Cargo.toml b/crates/compute-provider/Cargo.toml index 7c84ff1192..f97b0f4f52 100644 --- a/crates/compute-provider/Cargo.toml +++ b/crates/compute-provider/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Copmute Provider" -repository = "https://github.com/theinterfold/interfold/crates/compute-provider" +repository.workspace = true [dependencies] serde = { workspace = true, features = ["derive", "std"] } diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 64707e5e32..07e9331f2f 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode Configuration" -repository = "https://github.com/theinterfold/interfold/crates/config" +repository.workspace = true [dependencies] alloy-primitives = { workspace = true } diff --git a/crates/crypto/Cargo.toml b/crates/crypto/Cargo.toml index abf709ee01..8f1d6e83c5 100644 --- a/crates/crypto/Cargo.toml +++ b/crates/crypto/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode Cryptography Library" -repository = "https://github.com/theinterfold/interfold/crates/cryptography" +repository.workspace = true [dependencies] aes-gcm = { workspace = true } diff --git a/crates/dashboard/Cargo.toml b/crates/dashboard/Cargo.toml index e3a655ef26..f989b9b59b 100644 --- a/crates/dashboard/Cargo.toml +++ b/crates/dashboard/Cargo.toml @@ -4,6 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "Lightweight node monitoring dashboard for Interfold ciphernodes" +repository.workspace = true [dependencies] actix-web.workspace = true diff --git a/crates/data/Cargo.toml b/crates/data/Cargo.toml index 0092f36118..4bec5bb883 100644 --- a/crates/data/Cargo.toml +++ b/crates/data/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Ciphernode Data persistence" -repository = "https://github.com/theinterfold/interfold/crates/data" +repository.workspace = true [dependencies] actix = { workspace = true } diff --git a/crates/entrypoint/Cargo.toml b/crates/entrypoint/Cargo.toml index 5762f93a59..cf6744935e 100644 --- a/crates/entrypoint/Cargo.toml +++ b/crates/entrypoint/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - CLI Entrypoints" -repository = "https://github.com/theinterfold/interfold/crates/entrypoint" +repository.workspace = true [features] test-only-skip-proof-aggregation = [ diff --git a/crates/events/Cargo.toml b/crates/events/Cargo.toml index 9f4b30f51b..89a19019b5 100644 --- a/crates/events/Cargo.toml +++ b/crates/events/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "Event management for E3 Ciphernodes" -repository = "https://github.com/theinterfold/interfold/crates/events" +repository.workspace = true [dependencies] actix = { workspace = true } diff --git a/crates/evm-helpers/Cargo.toml b/crates/evm-helpers/Cargo.toml index ed8eb975d2..1bdcbfa9d6 100644 --- a/crates/evm-helpers/Cargo.toml +++ b/crates/evm-helpers/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold EVM Helpers" -repository = "https://github.com/theinterfold/interfold/crates/evm-helpers" +repository.workspace = true [dependencies] alloy.workspace = true diff --git a/crates/evm/Cargo.toml b/crates/evm/Cargo.toml index 8415a992c1..4769a65166 100644 --- a/crates/evm/Cargo.toml +++ b/crates/evm/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode EVM Connectors" -repository = "https://github.com/theinterfold/interfold/crates/evm" +repository.workspace = true publish = false [dependencies] diff --git a/crates/fhe-params/Cargo.toml b/crates/fhe-params/Cargo.toml index a248243c89..f1ef101fba 100644 --- a/crates/fhe-params/Cargo.toml +++ b/crates/fhe-params/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold FHE Params" -repository = "https://github.com/theinterfold/interfold/crates/fhe-params" +repository.workspace = true [dependencies] fhe = { workspace = true } diff --git a/crates/fhe/Cargo.toml b/crates/fhe/Cargo.toml index fb953d8e48..3d089c564c 100644 --- a/crates/fhe/Cargo.toml +++ b/crates/fhe/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode FHE Actors" -repository = "https://github.com/theinterfold/interfold/crates/fhe" +repository.workspace = true [dependencies] actix = { workspace = true } diff --git a/crates/hamt/Cargo.toml b/crates/hamt/Cargo.toml index d31d2e7411..b84fa367e5 100644 --- a/crates/hamt/Cargo.toml +++ b/crates/hamt/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - A serializable HAMT implementation" -repository = "https://github.com/theinterfold/interfold/crates/hamt" +repository.workspace = true [dependencies] serde.workspace = true diff --git a/crates/indexer/Cargo.toml b/crates/indexer/Cargo.toml index 9567a86536..d911b911a7 100644 --- a/crates/indexer/Cargo.toml +++ b/crates/indexer/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - A indexer for Interfold" -repository = "https://github.com/theinterfold/interfold/crates/indexer" +repository.workspace = true [dependencies] alloy.workspace = true diff --git a/crates/init/Cargo.toml b/crates/init/Cargo.toml index 4b59313a92..ff6ea8c70b 100644 --- a/crates/init/Cargo.toml +++ b/crates/init/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Init Function" -repository = "https://github.com/theinterfold/interfold/crates/init" +repository.workspace = true [dependencies] anyhow.workspace = true diff --git a/crates/interfoldup/Cargo.toml b/crates/interfoldup/Cargo.toml index bf327ed704..2b7c573804 100644 --- a/crates/interfoldup/Cargo.toml +++ b/crates/interfoldup/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "Installer for the Interfold CLI tool" -repository = "https://github.com/theinterfold/interfold" +repository.workspace = true [[bin]] name = "interfoldup" diff --git a/crates/keyshare/Cargo.toml b/crates/keyshare/Cargo.toml index afc0bfa165..042901711e 100644 --- a/crates/keyshare/Cargo.toml +++ b/crates/keyshare/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode Keyshare Actors" -repository = "https://github.com/theinterfold/interfold/crates/keyshare" +repository.workspace = true [dependencies] actix = { workspace = true } diff --git a/crates/logger/Cargo.toml b/crates/logger/Cargo.toml index 613a027131..b403a26120 100644 --- a/crates/logger/Cargo.toml +++ b/crates/logger/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode Logger" -repository = "https://github.com/theinterfold/interfold/crates/logger" +repository.workspace = true [dependencies] e3-events = { workspace = true } diff --git a/crates/net/Cargo.toml b/crates/net/Cargo.toml index 89b644c672..44f8d54955 100644 --- a/crates/net/Cargo.toml +++ b/crates/net/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode Networking Components" -repository = "https://github.com/theinterfold/interfold/crates/net" +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/parity-matrix/Cargo.toml b/crates/parity-matrix/Cargo.toml index 2223cb4be8..34461410a0 100644 --- a/crates/parity-matrix/Cargo.toml +++ b/crates/parity-matrix/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "Parity Matrix for the linear subspace of Z_q^{n+1}" -repository = "https://github.com/theinterfold/interfold/crates/parity-matrix" +repository.workspace = true [dependencies] num-bigint = { workspace = true, features = ["serde"] } diff --git a/crates/polynomial/Cargo.toml b/crates/polynomial/Cargo.toml index 49234241d8..b06b5b44aa 100644 --- a/crates/polynomial/Cargo.toml +++ b/crates/polynomial/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "A polynomial library with big integer coefficients for cryptographic operations" -repository = "https://github.com/theinterfold/interfold/crates/polynomial" +repository.workspace = true [dependencies] num-bigint = { workspace = true, features = ["rand", "serde"] } diff --git a/crates/program-server/Cargo.toml b/crates/program-server/Cargo.toml index 6a04da6f75..341e047cd6 100644 --- a/crates/program-server/Cargo.toml +++ b/crates/program-server/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Program Server" -repository = "https://github.com/theinterfold/interfold/crates/program-server" +repository.workspace = true [dependencies] actix-web.workspace = true diff --git a/crates/request/Cargo.toml b/crates/request/Cargo.toml index 4af9e672d5..41d5455442 100644 --- a/crates/request/Cargo.toml +++ b/crates/request/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode E3Request Handling Components" -repository = "https://github.com/theinterfold/interfold/crates/request" +repository.workspace = true [dependencies] actix = { workspace = true } diff --git a/crates/safe/Cargo.toml b/crates/safe/Cargo.toml index 4cdca5e470..1feb590f2e 100644 --- a/crates/safe/Cargo.toml +++ b/crates/safe/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold SAFE" -repository = "https://github.com/theinterfold/interfold/crates/safe" +repository.workspace = true [dependencies] sha3 = "0.10.8" diff --git a/crates/sdk/Cargo.toml b/crates/sdk/Cargo.toml index c11e67b206..f47d4479eb 100644 --- a/crates/sdk/Cargo.toml +++ b/crates/sdk/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold SDK" -repository = "https://github.com/theinterfold/interfold/crates/sdk" +repository.workspace = true [dependencies] e3-evm-helpers = { workspace = true, optional = true } diff --git a/crates/slashing/Cargo.toml b/crates/slashing/Cargo.toml index 0262713095..4a29a8bec4 100644 --- a/crates/slashing/Cargo.toml +++ b/crates/slashing/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 fault attribution, accusation quorum, and commitment consistency" -repository = "https://github.com/theinterfold/interfold/crates/slashing" +repository.workspace = true [dependencies] actix = { workspace = true } diff --git a/crates/sortition/Cargo.toml b/crates/sortition/Cargo.toml index 990ab05c11..b72bed09b9 100644 --- a/crates/sortition/Cargo.toml +++ b/crates/sortition/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode Sortition Components" -repository = "https://github.com/theinterfold/interfold/crates/sortition" +repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/sync/Cargo.toml b/crates/sync/Cargo.toml index 94364435ae..4602fd9821 100644 --- a/crates/sync/Cargo.toml +++ b/crates/sync/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description.workspace = true -repository = "https://github.com/theinterfold/interfold/crates/sync" +repository.workspace = true [dependencies] actix.workspace = true diff --git a/crates/test-helpers/Cargo.toml b/crates/test-helpers/Cargo.toml index cd18700cea..821369313f 100644 --- a/crates/test-helpers/Cargo.toml +++ b/crates/test-helpers/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode Test Helpers" -repository = "https://github.com/theinterfold/interfold/crates/test-helpers" +repository.workspace = true [dependencies] actix = { workspace = true } diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index b0b02c0f6f..6b0d64bdbb 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "E3 - Interfold Ciphernode Tests" -repository = "https://github.com/theinterfold/interfold/crates/tests" +repository.workspace = true [dependencies] actix = { workspace = true } diff --git a/crates/zk-helpers/Cargo.toml b/crates/zk-helpers/Cargo.toml index 7158de728c..3fe87e8f6f 100644 --- a/crates/zk-helpers/Cargo.toml +++ b/crates/zk-helpers/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true license.workspace = true description = "ZK circuit helpers" -repository = "https://github.com/theinterfold/interfold/crates/zk-helpers" +repository.workspace = true [dependencies] anyhow = { workspace = true }