forked from FairgateLabs/rust-bitcoin-script-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (34 loc) · 1.36 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
[package]
name = "bitcoin-script-stack"
description = "Bitcoin script stack tracking tool and deubgger"
version = "0.0.1"
edition = "2021"
authors = ["Martin Jonas <[email protected]>"]
repository = "https://github.com/FairgateLabs/rust-bitcoin-script-stack"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitcoin-script = { git = "https://github.com/bitlayer-org/rust-bitcoin-script" }
bitcoin = { git = "https://github.com/bitlayer-org/rust-bitcoin", branch = "bf-stark" }
bitcoin-scriptexec = { git = "https://github.com/bitlayer-org/rust-bitcoin-scriptexec/"}
crossterm = { version = "0.27.0", optional = true}
hex = "0.4.3"
[features]
interactive = ["crossterm"]
[patch.crates-io.base58ck]
git = "https://github.com/bitlayer-org/rust-bitcoin.git"
branch = "bf-stark"
[patch.crates-io.bitcoin]
git = "https://github.com/bitlayer-org/rust-bitcoin.git"
branch = "bf-stark"
[patch.crates-io.bitcoin_hashes]
git = "https://github.com/bitlayer-org/rust-bitcoin.git"
branch = "bf-stark"
[patch.crates-io.bitcoin-internals]
git = "https://github.com/bitlayer-org/rust-bitcoin.git"
branch = "bf-stark"
[patch.crates-io.bitcoin-io]
git = "https://github.com/bitlayer-org/rust-bitcoin.git"
branch = "bf-stark"
[patch.crates-io.bitcoin-units]
git = "https://github.com/bitlayer-org/rust-bitcoin.git"
branch = "bf-stark"