bump patch
This commit is contained in:
parent
45657acb9b
commit
648a78601a
6 changed files with 11 additions and 9 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -623,7 +623,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zokrates_cli"
|
name = "zokrates_cli"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_cli 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"assert_cli 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"bincode 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"bincode 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -631,13 +631,13 @@ dependencies = [
|
||||||
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
"regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"zokrates_core 0.3.1",
|
"zokrates_core 0.3.2",
|
||||||
"zokrates_fs_resolver 0.3.1",
|
"zokrates_fs_resolver 0.3.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zokrates_core"
|
name = "zokrates_core"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_cli 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"assert_cli 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"bimap 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"bimap 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -658,7 +658,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zokrates_fs_resolver"
|
name = "zokrates_fs_resolver"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
"checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e"
|
"checksum aho-corasick 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zokrates_cli"
|
name = "zokrates_cli"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
authors = ["Jacob Eberhardt <jacob.eberhardt@tu-berlin.de>", "Dennis Kuhnert <mail@kyroy.com>", "Thibaut Schaeffer <thibaut@schaeff.fr>"]
|
authors = ["Jacob Eberhardt <jacob.eberhardt@tu-berlin.de>", "Dennis Kuhnert <mail@kyroy.com>", "Thibaut Schaeffer <thibaut@schaeff.fr>"]
|
||||||
repository = "https://github.com/JacobEberhardt/ZoKrates.git"
|
repository = "https://github.com/JacobEberhardt/ZoKrates.git"
|
||||||
|
|
||||||
|
|
2
zokrates_cli/examples/jubjub/add.code
Normal file
2
zokrates_cli/examples/jubjub/add.code
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
def main(field x) -> (field):
|
||||||
|
return 1/x
|
|
@ -39,7 +39,7 @@ fn main() {
|
||||||
// cli specification using clap library
|
// cli specification using clap library
|
||||||
let matches = App::new("ZoKrates")
|
let matches = App::new("ZoKrates")
|
||||||
.setting(AppSettings::SubcommandRequiredElseHelp)
|
.setting(AppSettings::SubcommandRequiredElseHelp)
|
||||||
.version("0.3.1")
|
.version("0.3.2")
|
||||||
.author("Jacob Eberhardt, Thibaut Schaeffer, Dennis Kuhnert")
|
.author("Jacob Eberhardt, Thibaut Schaeffer, Dennis Kuhnert")
|
||||||
.about("Supports generation of zkSNARKs from high level language code including Smart Contracts for proof verification on the Ethereum Blockchain.\n'I know that I show nothing!'")
|
.about("Supports generation of zkSNARKs from high level language code including Smart Contracts for proof verification on the Ethereum Blockchain.\n'I know that I show nothing!'")
|
||||||
.subcommand(SubCommand::with_name("compile")
|
.subcommand(SubCommand::with_name("compile")
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zokrates_core"
|
name = "zokrates_core"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
authors = ["Jacob Eberhardt <jacob.eberhardt@tu-berlin.de>", "Dennis Kuhnert <mail@kyroy.com>"]
|
authors = ["Jacob Eberhardt <jacob.eberhardt@tu-berlin.de>", "Dennis Kuhnert <mail@kyroy.com>"]
|
||||||
repository = "https://github.com/JacobEberhardt/ZoKrates"
|
repository = "https://github.com/JacobEberhardt/ZoKrates"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zokrates_fs_resolver"
|
name = "zokrates_fs_resolver"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
authors = ["Thibaut Schaeffer <thibaut@schaeff.fr>"]
|
authors = ["Thibaut Schaeffer <thibaut@schaeff.fr>"]
|
||||||
repository = "https://github.com/JacobEberhardt/ZoKrates.git"
|
repository = "https://github.com/JacobEberhardt/ZoKrates.git"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue