-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
92 lines (72 loc) · 1.58 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "provable-rest-client"
version = "0.16.9"
authors = [ "The Provable Team" ]
description = "Client for querying the SnarkOS REST API"
homepage = "https://provable.com"
repository = "https://github.com/AleoHQ/RESTClient"
keywords = [
"aleo",
"cryptography",
"blockchain",
"decentralized",
"zero-knowledge"
]
categories = [ "cryptography::cryptocurrencies" ]
include = [ "Cargo.toml", "cannon", "README.md", "LICENSE.md" ]
license = "GPL-3.0"
edition = "2021"
[lib]
path = "lib.rs"
[dependencies.snarkvm]
version = "=1.0.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4"
features = [ "derive", "string" ]
[dependencies.indexmap]
version = "2.0.0"
[dependencies.parking_lot]
version = "0.12.1"
[dependencies.rand]
version = "0.8"
default-features = false
[dependencies.rayon]
version = "1.7.0"
[dependencies.reqwest]
version = "0.11"
[dependencies.serde_json]
version = "1.0.128"
features = ["arbitrary_precision"]
[dependencies.tokio]
version = "1.0"
features = [ "macros", "rt-multi-thread"]
[dependencies.tracing]
version = "0.1.37"
[dependencies.ureq]
version = "2.9.1"
[dev-dependencies.rusty-hook]
version = "0.11.2"
[dev-dependencies.tokio-test]
version = "0.4.3"
[dev-dependencies.tracing-subscriber]
version = "0.3.18"
features = [ "env-filter" ]
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
[profile.dev]
opt-level = 2
lto = "thin"
incremental = true
[profile.test]
opt-level = 2
lto = "thin"
incremental = true
debug = true
debug-assertions = true
[features]
default = [ ]
low_target = [ "snarkvm/test" ]