
* add appveyor, travis, remove libsnark as default, add push to gh * fix appveyor * change appveyor to nightly * use cargo for build job * change to build everywhere * update token, reduce targets * add more targets * add on liner script * remove rustc dep * add need_cmd * add check cmd * simple brackets * use check_cmd for curl * copy stdlib to OUT_DIR * ship stdlib in archive * install stdlib, give PATH hints after build script * clean * comment * scripts: ensure one-liner install script works with FreeBSD * remove appveyor for now * clean, remove windows, remove appveyor, remove travis test * put back cross install * fix stdlib test generation * disable tests in travis * restore test script to prevent tests to run.. * change scripts to keep same behaviour now that libsnark is disabled by default * update docs with installer * change docker to dockerhub * change repo
28 lines
735 B
TOML
28 lines
735 B
TOML
[package]
|
|
name = "zokrates_cli"
|
|
version = "0.4.3"
|
|
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"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
libsnark = ["zokrates_core/libsnark"]
|
|
|
|
[dependencies]
|
|
clap = "2.26.2"
|
|
bincode = "0.8.0"
|
|
regex = "0.2"
|
|
zokrates_field = { version = "0.3", path = "../zokrates_field" }
|
|
zokrates_core = { version = "0.3", path = "../zokrates_core" }
|
|
zokrates_fs_resolver = { version = "0.4", path = "../zokrates_fs_resolver"}
|
|
serde_json = "1.0"
|
|
|
|
[dev-dependencies]
|
|
glob = "0.2.11"
|
|
assert_cli = "0.5"
|
|
tempdir = "0.3"
|
|
|
|
[[bin]]
|
|
name = "zokrates"
|
|
path = "src/bin.rs"
|