-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (28 loc) · 1 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
[package]
name = "bitcoin-testscripts"
version = "0.1.0"
edition = "2021"
[dependencies]
# Bitcoin Libraries
bitcoin = { workspace = true, features = ["rand-std"]}
bitcoin-script = { git = "https://github.com/BitVM/rust-bitcoin-script" }
# BitVM scripts
bitcoin-window-mul = { workspace = true }
# bitcoin-window-mul = { path = "../../../alpen/bitcoin-window-mul" }
bitcoin-splitter = { path = "../bitcoin-splitter" }
bitcoin-utils = { path = "../bitcoin-utils" }
# General-purpose libraries
paste = "1.0.15"
seq-macro = "0.3.5" # For constant for loops
# Crypto libraries
hex = "0.4.3"
sha2 = "0.10.8"
num-bigint = { version = "0.4.4", features = ["rand"] }
num-traits = "0.2.18"
# For finite field arithmetic
ark-ff = { version = "0.4.0" }
ark-bn254 = { version = "0.4.0", features = ["curve"], default-features = false }
ark-std = { version = "0.4.0", default-features = false, features = ["print-trace"] }
# Random libraries
rand_chacha = "0.3.1"
rand = "0.8.5"