Skip to content

Commit a963ff2

Browse files
committedApr 23, 2024
chore(cometbls-groth16): rename vk.bin to bypass gitignore
Signed-off-by: aeryz <abdullaheryz@protonmail.com>
1 parent 7fd733e commit a963ff2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎lib/cometbls-groth16-verifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version = "0.1.0"
1010
workspace = true
1111

1212
[package.metadata.crane]
13-
include = ["lib/cometbls-groth16-verifier/vk.bin"]
13+
include = ["lib/cometbls-groth16-verifier/verifying_key.bin"]
1414

1515
[dependencies]
1616
ark-ff = { version = "0.4.2", default-features = false }

‎lib/cometbls-groth16-verifier/build.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ fn pedersen_commitment_key() -> String {
8989
}
9090

9191
fn main() {
92-
println!("cargo:rerun-if-changed=vk.bin");
92+
println!("cargo:rerun-if-changed=verifying_key.bin");
9393
let out_dir = env::var_os("OUT_DIR").unwrap();
9494
let dest_path = Path::new(&out_dir).join("constants.rs");
9595

96-
let data = include_bytes!("./vk.bin");
96+
let data = include_bytes!("./verifying_key.bin");
9797
let verifying_key = parse_verifying_key(data.as_slice());
9898

9999
let pedersen_commitment = pedersen_commitment_key();
524 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)