We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abcbfa5 commit 001ed14Copy full SHA for 001ed14
bindings/java/rust_code/build.rs
@@ -6,7 +6,11 @@ use std::{env, path::PathBuf};
6
const PATH_TO_JAVA_BINDINGS_FILE: &str = "java/java_code/src/main/java/ethereum/cryptography";
7
8
// These are the files needed to pass to the `javac` command to generate the header file
9
-const INPUT_FILES: [&str; 2] = ["LibPeerDASKZG.java", "CellsAndProofs.java"];
+const INPUT_FILES: [&str; 3] = [
10
+ "LibPeerDASKZG.java",
11
+ "CellsAndProofs.java",
12
+ "CellsAndProofsDeflattened.java",
13
+];
14
15
fn main() {
16
let path_to_bindings_dir = path_to_bindings_folder();
0 commit comments