mirror of
https://github.com/vacp2p/zerokit.git
synced 2026-01-09 21:58:06 -05:00
Compare commits
3 Commits
v0.4.4
...
zerokit_ut
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
def5125d8f | ||
|
|
ebdad7b78c | ||
|
|
7aaac2b792 |
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -2686,7 +2686,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rln"
|
name = "rln"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ark-bn254 0.4.0",
|
"ark-bn254 0.4.0",
|
||||||
"ark-circom 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"ark-circom 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
@@ -4260,7 +4260,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zerokit_utils"
|
name = "zerokit_utils"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ark-bn254 0.4.0",
|
"ark-bn254 0.4.0",
|
||||||
"ark-ff 0.4.1",
|
"ark-ff 0.4.1",
|
||||||
|
|||||||
@@ -21,4 +21,4 @@ opt-level = 3
|
|||||||
opt-level = "s"
|
opt-level = "s"
|
||||||
|
|
||||||
[profile.release.package."semaphore"]
|
[profile.release.package."semaphore"]
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rln"
|
name = "rln"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
description = "APIs to manage, compute and verify zkSNARK proofs and RLN primitives"
|
description = "APIs to manage, compute and verify zkSNARK proofs and RLN primitives"
|
||||||
|
documentation = "https://github.com/vacp2p/zerokit"
|
||||||
|
homepage = "https://vac.dev"
|
||||||
|
repository = "https://github.com/vacp2p/zerokit"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type = ["rlib", "staticlib"]
|
crate-type = ["rlib", "staticlib"]
|
||||||
@@ -39,7 +42,7 @@ once_cell = "=1.17.1"
|
|||||||
rand = "=0.8.5"
|
rand = "=0.8.5"
|
||||||
rand_chacha = "=0.3.1"
|
rand_chacha = "=0.3.1"
|
||||||
tiny-keccak = { version = "=2.0.2", features = ["keccak"] }
|
tiny-keccak = { version = "=2.0.2", features = ["keccak"] }
|
||||||
utils = { package = "zerokit_utils", version = "=0.3.0", path = "../utils/", default-features = false }
|
utils = { package = "zerokit_utils", version = "=0.3.1", path = "../utils/", default-features = false }
|
||||||
|
|
||||||
# serialization
|
# serialization
|
||||||
serde_json = "=1.0.96"
|
serde_json = "=1.0.96"
|
||||||
|
|||||||
@@ -47,4 +47,4 @@ opt-level = 3
|
|||||||
# Dependencies are optimized, even in a dev build. This improves dev performance
|
# Dependencies are optimized, even in a dev build. This improves dev performance
|
||||||
# while having neglible impact on incremental build times.
|
# while having neglible impact on incremental build times.
|
||||||
[profile.dev.package."*"]
|
[profile.dev.package."*"]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "zerokit_utils"
|
name = "zerokit_utils"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
description = "Various utilities for Zerokit"
|
description = "Various utilities for Zerokit"
|
||||||
|
documentation = "https://github.com/vacp2p/zerokit"
|
||||||
|
homepage = "https://vac.dev"
|
||||||
|
repository = "https://github.com/vacp2p/zerokit"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
|
|||||||
Reference in New Issue
Block a user