-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (35 loc) · 918 Bytes
/
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
[package]
name = "libaleominer"
version = "0.1.0"
edition = "2021"
# [dependencies.snarkvm]
# git = "https://github.com/AleoNet/snarkVM.git"
# rev = "d170a9f"
# features = [ "circuit", "console", "rocks" ]
[dependencies.snarkvm]
path = "../snarkVM-miner"
version = "=0.16.19"
features = [ "timer" ]
[dependencies.ledger-puzzle-epoch]
package = "snarkvm-ledger-puzzle-epoch"
path = "../snarkVM-miner/ledger/puzzle/epoch"
version = "=0.16.19"
features = [ "synthesis" ]
[dependencies.console_program]
package = "snarkvm-console-program"
path = "../snarkVM-miner/console/program"
version = "=0.16.19"
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3.1"
[dependencies.sha2]
version = "0.10"
default-features = false
[build-dependencies.cc]
version = "^1.0.83"
[build-dependencies.which]
version = "^4.4"
[dependencies.tiny-keccak]
version = "2"
features = [ "keccak", "sha3" ]