commit
a9a157a290
3 changed files with 4 additions and 2 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1,3 +1,5 @@
|
||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aho-corasick"
|
name = "aho-corasick"
|
||||||
version = "0.6.9"
|
version = "0.6.9"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zokrates_cli"
|
name = "zokrates_cli"
|
||||||
version = "0.4.2"
|
version = "0.4.3"
|
||||||
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"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
|
@ -42,7 +42,7 @@ fn cli() -> Result<(), String> {
|
||||||
// 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.4.2")
|
.version("0.4.3")
|
||||||
.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")
|
||||||
|
|
Loading…
Reference in a new issue