Skip to content

Commit

Permalink
updating to version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clararod9 committed Oct 11, 2022
1 parent 9ebd806 commit 8926ddc
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 18 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion circom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circom"
version = "2.0.9"
version = "2.1.0"
authors = ["Costa Group UCM","iden3"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion code_producers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "code_producers"
version = "2.0.8"
version = "2.1.0"
authors = ["Costa Group UCM","iden3"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compiler"
version = "2.0.8"
version = "2.1.0"
authors = ["Costa Group UCM","iden3"]
edition = "2018"

Expand Down
4 changes: 0 additions & 4 deletions compiler/src/circuit_design/circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down Expand Up @@ -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())
Expand Down
2 changes: 1 addition & 1 deletion constraint_generation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "constraint_generation"
version = "2.0.9"
version = "2.1.0"
authors = ["Costa Group UCM","iden3"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion program_structure/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "program_structure"
version = "2.0.9"
version = "2.1.0"
authors = ["Costa Group UCM","iden3"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion type_analysis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "type_analysis"
version = "2.0.8"
version = "2.1.0"
authors = ["Costa Group UCM","iden3"]
edition = "2018"

Expand Down

0 comments on commit 8926ddc

Please sign in to comment.