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
107 changes: 61 additions & 46 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ members = [
"nf-ingest",
]

[patch.crates-io]
imt-tree = { path = "imt-tree" }

[profile.release]
lto = "fat"
codegen-units = 1
3 changes: 3 additions & 0 deletions imt-tree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name = "imt-tree"
version = "0.1.0"
edition = "2021"
description = "Indexed Merkle Tree for nullifier non-membership proofs"
license = "MIT OR Apache-2.0"
repository = "https://github.com/valargroup/vote-nullifier-pir"

[dependencies]
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion nf-ingest/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]
imt-tree = { path = "../imt-tree" }
imt-tree = "0.1"
anyhow = "1.0"
hex = "0.4"
ff = "0.13"
Expand Down
2 changes: 1 addition & 1 deletion nf-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ reqwest = { version = "0.12", default-features = false, features = ["
# Always needed
pir-export = { path = "../pir/export" }
nf-ingest = { path = "../nf-ingest" }
imt-tree = { path = "../imt-tree" }
imt-tree = "0.1"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
clap = { version = "4", features = ["derive", "env"] }
anyhow = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions pir/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ wiremock = "0.6"

[dependencies]
pir-types = { path = "../types", features = ["reader"] }
imt-tree = { path = "../../imt-tree" }
ypir = { git = "https://github.com/valargroup/ypir.git", branch = "valar/artifact", default-features = false }
imt-tree = "0.1"
ypir = { git = "https://github.com/valargroup/ypir.git", branch = "valar/artifact", package = "valar-ypir", default-features = false }
hex = "0.4"
anyhow = "1.0"
ff = "0.13"
Expand Down
2 changes: 1 addition & 1 deletion pir/export/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cli = ["dep:nf-ingest"]

[dependencies]
pir-types = { path = "../types", features = ["reader"] }
imt-tree = { path = "../../imt-tree" }
imt-tree = "0.1"
nf-ingest = { path = "../../nf-ingest", optional = true }
anyhow = "1.0"
hex = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions pir/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ avx512 = ["ypir/explicit_avx512"]

[dependencies]
pir-types = { path = "../types" }
ypir = { git = "https://github.com/valargroup/ypir.git", branch = "valar/artifact", default-features = false, features = ["server"] }
spiral-rs = { git = "https://github.com/valargroup/spiral-rs.git", branch = "valar/avoid-avx512" }
ypir = { git = "https://github.com/valargroup/ypir.git", branch = "valar/artifact", package = "valar-ypir", default-features = false, features = ["server"] }
spiral-rs = { git = "https://github.com/valargroup/spiral-rs.git", branch = "valar/avoid-avx512", package = "valar-spiral-rs" }
axum = "0.7"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion pir/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pir-client = { path = "../client" }
pir-server = { path = "../server" }
pir-types = { path = "../types" }
nf-ingest = { path = "../../nf-ingest" }
ypir = { git = "https://github.com/valargroup/ypir.git", branch = "valar/artifact", default-features = false, features = ["server"] }
ypir = { git = "https://github.com/valargroup/ypir.git", branch = "valar/artifact", package = "valar-ypir", default-features = false, features = ["server"] }
anyhow = "1.0"
clap = { version = "4", features = ["derive"] }
ff = "0.13"
Expand Down
2 changes: 1 addition & 1 deletion pir/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ serde = { version = "1", features = ["derive"] }
pasta_curves = { version = "0.5", optional = true }
ff = { version = "0.13", optional = true }
anyhow = { version = "1.0", optional = true }
imt-tree = { path = "../../imt-tree", optional = true }
imt-tree = { version = "0.1", optional = true }
Loading