-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 1.83 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "zokrates_api"
version = "0.1.0"
edition = "2021"
authors = ["Alvaro Alonso Domenech <https://github.com/alvaro-alonso>"]
repository = "https://github.com/ZoKratesPlus/zokrates-api"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.rocket]
version = "0.5.0-rc.1"
features = ["json"]
[dependencies]
serde_json = { version = "1.0", features = ["preserve_order"] }
log = "0.4"
typed-arena = "1.4.1"
sha2 = "0.10"
rand = "0.8"
# zokrates
zokrates_core = { version = "0.7", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8", default-features = false }
zokrates_ast = { version = "0.1", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8", default-features = false }
zokrates_field = { version = "0.5", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8", default-features = false }
zokrates_interpreter = { version = "0.1", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8", default-features = false }
zokrates_fs_resolver = { version = "0.5", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8" }
zokrates_circom = { version = "0.1", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8" }
zokrates_proof_systems = { version = "0.1", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8", default-features = false }
zokrates_ark = { version = "0.1", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8", default-features = false }
zokrates_common = { version = "0.1", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8", default-features = false }
zokrates_abi = { version = "0.1.9", git = "https://github.com/Zokrates/ZoKrates", tag = "0.8.8", default-features = false }
# open-api
schemars = "0.8"
okapi = { version = "0.6.0-alpha-1" }
rocket_okapi = { version = "0.8.0-alpha-1", features = ["swagger"] }