This repository has been archived by the owner on May 15, 2023. It is now read-only.
forked from ProvableHQ/sdk
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
126 lines (96 loc) · 2.15 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[package]
name = "slingshot"
version = "0.1.0"
authors = ["The Aleo Team <[email protected]>"]
description = "A lightweight CLI for deploying programs and executing transactions on Aleo."
repository = "https://github.com/d0cd/slingshot.git"
keywords = ["slingshot", "aleo", "cryptography", "blockchain", "decentralized", "zero-knowledge"]
categories = ["cryptography::cryptocurrencies", "operating-systems"]
include = ["Cargo.toml", "src", "README.md", "LICENSE.md"]
license = "GPL-3.0"
edition = "2021"
[features]
default = [ "parallel" ]
parallel = [ "rayon" ]
[lib]
path = "cli/lib.rs"
[[bin]]
name = "slingshot"
path = "cli/main.rs"
[dependencies.snarkos]
git = "https://github.com/d0cd/snarkOS"
rev = "5ad2d9f"
[dependencies.snarkvm]
# version = "0.9.7"
git = "https://github.com/AleoHQ/snarkVM"
rev = "4b7bb19"
features = ["aleo-cli", "circuit", "console", "parallel"]
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "3.2"
features = ["derive"]
[dependencies.colored]
version = "2"
[dependencies.indexmap]
version = "1.9"
features = [ "rayon" ]
[dependencies.num_cpus]
version = "1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rand]
version = "0.8"
default-features = false
[dependencies.rand_chacha]
version = "0.3.0"
default-features = false
[dependencies.rayon]
version = "1"
optional = true
[dependencies.self_update]
version = "0.32"
[dependencies.serde]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1.0"
[dependencies.time]
version = "0.3"
[dependencies.tokio]
version = "1.21"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.warp]
version = "0.3"
[dependencies.ureq]
version = "2.5"
[dev-dependencies.rusty-hook]
version = "0.11.2"
[build-dependencies.walkdir]
version = "2"
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = "thin"
incremental = true
debug-assertions = false
[profile.dev]
opt-level = 2
lto = "thin"
incremental = true
[profile.test]
opt-level = 2
lto = "thin"
incremental = true
debug = true
debug-assertions = true