Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 11 additions & 32 deletions Cargo.lock

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

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ members = [
"crates/parity-matrix",
"crates/polynomial",
"crates/zk-helpers",
"crates/pvss",
"crates/pvss-cli"
]
exclude = [
"examples/CRISP",
Expand Down Expand Up @@ -108,7 +106,6 @@ e3-trbfv = { version = "0.1.8", path = "./crates/trbfv" }
e3-utils = { version = "0.1.8", path = "./crates/utils" }
e3-safe = { version = "0.1.8", path = "./crates/safe" }
e3-zk-helpers = { version = "0.1.8", path = "./crates/zk-helpers" }
e3-pvss = { version = "0.1.8", path = "./crates/pvss" }

actix = "=0.13.5"
actix-web = "=4.11.0"
Expand Down
2 changes: 1 addition & 1 deletion circuits/lib/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pvss_lib"
name = "lib"
type = "lib"
authors = ["Gnosis Guild / Enclave"]
version = "1.0.0-beta.15"
Expand Down
5 changes: 2 additions & 3 deletions crates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@ COPY crates/trbfv/Cargo.toml ./trbfv/Cargo.toml
COPY crates/utils/Cargo.toml ./utils/Cargo.toml
COPY crates/wasm/Cargo.toml ./wasm/Cargo.toml
COPY crates/zk-helpers/Cargo.toml ./zk-helpers/Cargo.toml
COPY crates/pvss/Cargo.toml ./pvss/Cargo.toml
COPY crates/pvss-cli/Cargo.toml ./pvss-cli/Cargo.toml

RUN echo 'fn main() { println!("cargo:warning=dependency cache build"); }' > ./entrypoint/build.rs
RUN echo 'fn main() { println!("cargo:warning=dependency cache build"); }' > ./cli/build.rs
Expand All @@ -98,7 +96,8 @@ RUN for d in ./*/ ; do \
fi \
done

# Stub binary so first build (dependency cache) succeeds
# Crates with [[bin]] in Cargo.toml need stub binaries so the first build succeeds
RUN mkdir -p ./zk-helpers/src/bin && echo 'fn main() {}' > ./zk-helpers/src/bin/zk_cli.rs
RUN mkdir -p ./fhe-params/src/bin && echo 'fn main() {}' > ./fhe-params/src/bin/search_params.rs

RUN cargo build --locked --release
Expand Down
13 changes: 0 additions & 13 deletions crates/pvss-cli/Cargo.toml

This file was deleted.

25 changes: 0 additions & 25 deletions crates/pvss/Cargo.toml

This file was deleted.

7 changes: 0 additions & 7 deletions crates/pvss/src/circuits/mod.rs

This file was deleted.

70 changes: 0 additions & 70 deletions crates/pvss/src/circuits/pk_bfv/circuit.rs

This file was deleted.

9 changes: 0 additions & 9 deletions crates/pvss/src/circuits/pk_bfv/mod.rs

This file was deleted.

13 changes: 0 additions & 13 deletions crates/pvss/src/lib.rs

This file was deleted.

34 changes: 0 additions & 34 deletions crates/pvss/src/sample.rs

This file was deleted.

112 changes: 0 additions & 112 deletions crates/pvss/src/traits.rs

This file was deleted.

Loading
Loading