From 8926ddc14a60d3fa50fdc5b78fefdaa5fa79a720 Mon Sep 17 00:00:00 2001 From: clararod9 Date: Tue, 11 Oct 2022 16:44:28 +0200 Subject: [PATCH] updating to version 2.1.0 --- Cargo.lock | 14 +++++++------- circom/Cargo.toml | 2 +- code_producers/Cargo.toml | 2 +- compiler/Cargo.toml | 2 +- compiler/src/circuit_design/circuit.rs | 4 ---- constraint_generation/Cargo.toml | 2 +- parser/Cargo.toml | 2 +- program_structure/Cargo.toml | 2 +- type_analysis/Cargo.toml | 2 +- 9 files changed, 14 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9bde65810..f2b28e00e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -155,7 +155,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "circom" -version = "2.0.9" +version = "2.1.0" dependencies = [ "ansi_term", "clap", @@ -205,7 +205,7 @@ dependencies = [ [[package]] name = "code_producers" -version = "2.0.8" +version = "2.1.0" dependencies = [ "handlebars", "lz_fnv", @@ -234,7 +234,7 @@ dependencies = [ [[package]] name = "compiler" -version = "2.0.8" +version = "2.1.0" dependencies = [ "code_producers", "constant_tracking", @@ -255,7 +255,7 @@ version = "2.0.0" [[package]] name = "constraint_generation" -version = "2.0.9" +version = "2.1.0" dependencies = [ "ansi_term", "circom_algebra", @@ -655,7 +655,7 @@ checksum = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063" [[package]] name = "parser" -version = "2.0.8" +version = "2.1.0" dependencies = [ "lalrpop", "lalrpop-util", @@ -764,7 +764,7 @@ dependencies = [ [[package]] name = "program_structure" -version = "2.0.9" +version = "2.1.0" dependencies = [ "codespan", "codespan-reporting", @@ -1188,7 +1188,7 @@ dependencies = [ [[package]] name = "type_analysis" -version = "2.0.8" +version = "2.1.0" dependencies = [ "num-bigint-dig", "num-traits", diff --git a/circom/Cargo.toml b/circom/Cargo.toml index 3d1ab6071..5ff9cc41e 100644 --- a/circom/Cargo.toml +++ b/circom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "circom" -version = "2.0.9" +version = "2.1.0" authors = ["Costa Group UCM","iden3"] edition = "2018" diff --git a/code_producers/Cargo.toml b/code_producers/Cargo.toml index 7d7ab0f2a..17b260546 100644 --- a/code_producers/Cargo.toml +++ b/code_producers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "code_producers" -version = "2.0.8" +version = "2.1.0" authors = ["Costa Group UCM","iden3"] edition = "2018" diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml index aeebb5c18..cbdf808fd 100644 --- a/compiler/Cargo.toml +++ b/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "compiler" -version = "2.0.8" +version = "2.1.0" authors = ["Costa Group UCM","iden3"] edition = "2018" diff --git a/compiler/src/circuit_design/circuit.rs b/compiler/src/circuit_design/circuit.rs index 23a54be13..fecfdba28 100644 --- a/compiler/src/circuit_design/circuit.rs +++ b/compiler/src/circuit_design/circuit.rs @@ -362,9 +362,7 @@ impl WriteC for Circuit { // Functions to release the memory let mut release_component_code = generate_function_release_memory_component(); - //let mut release_circuit_code = generate_function_release_memory_circuit(); code.append(&mut release_component_code); - //code.append(&mut release_circuit_code); // Actual code of the circuit code.push("// function declarations".to_string()); @@ -405,9 +403,7 @@ impl WriteC for Circuit { run_args.push("0".to_string()); run_args.push(CIRCOM_CALC_WIT.to_string()); let run_call = format!("{};", build_call(main_template_run, run_args.clone())); - //let release_call = format!("{};", build_call("release_memory".to_string(), vec![CIRCOM_CALC_WIT.to_string()])); - //let main_run_body = vec![start_msg, ctx_index, run_call, end_msg]; let main_run_body = vec![ctx_index, run_call]; code.push(build_callable(run_circuit, run_circuit_args, main_run_body)); (code, "".to_string()) diff --git a/constraint_generation/Cargo.toml b/constraint_generation/Cargo.toml index 3c36a72e7..aacdce9df 100644 --- a/constraint_generation/Cargo.toml +++ b/constraint_generation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "constraint_generation" -version = "2.0.9" +version = "2.1.0" authors = ["Costa Group UCM","iden3"] edition = "2018" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 9f2dd3fc7..e428d23ea 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parser" -version = "2.0.8" +version = "2.1.0" authors = ["Costa Group UCM","iden3"] edition = "2018" build = "build.rs" diff --git a/program_structure/Cargo.toml b/program_structure/Cargo.toml index f70fb2f0b..8d02631a4 100644 --- a/program_structure/Cargo.toml +++ b/program_structure/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "program_structure" -version = "2.0.9" +version = "2.1.0" authors = ["Costa Group UCM","iden3"] edition = "2018" diff --git a/type_analysis/Cargo.toml b/type_analysis/Cargo.toml index 8c2fbdde7..722ae8d35 100644 --- a/type_analysis/Cargo.toml +++ b/type_analysis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "type_analysis" -version = "2.0.8" +version = "2.1.0" authors = ["Costa Group UCM","iden3"] edition = "2018"