Skip to content

Commit bea9202

Browse files
Merge pull request #5 from alpenlabs/StructuredScript
Bump to Bitcoin 0.32.5
2 parents 2269563 + bca7aa4 commit bea9202

File tree

3 files changed

+399
-46
lines changed

3 files changed

+399
-46
lines changed

Cargo.toml

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,17 @@
11
[workspace]
2-
members = [
3-
"macro",
4-
]
5-
6-
[patch.crates-io.base58check]
7-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
8-
branch = "bitvm"
9-
10-
[patch.crates-io.bitcoin]
11-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
12-
branch = "bitvm"
13-
14-
[patch.crates-io.bitcoin_hashes]
15-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
16-
branch = "bitvm"
17-
18-
[patch.crates-io.bitcoin-internals]
19-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
20-
branch = "bitvm"
21-
22-
[patch.crates-io.bitcoin-io]
23-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
24-
branch = "bitvm"
25-
26-
[patch.crates-io.bitcoin-units]
27-
git = "https://github.com/rust-bitcoin/rust-bitcoin"
28-
branch = "bitvm"
29-
2+
members = ["macro"]
303

314
[package]
325
name = "bitcoin-script"
336
version = "0.3.0"
34-
authors = ["Lukas George [email protected]"]
7+
authors = ["Lukas George <[email protected]>"]
358
edition = "2021"
369
description = "Inline Bitcoin scripts"
3710
license = "MIT"
3811
repository = "https://github.com/BitVM/rust-bitcoin-script"
3912

4013
[dependencies]
41-
bitcoin = { git = "https://github.com/rust-bitcoin/rust-bitcoin", branch = "bitvm", features = ["rand-std"]}
14+
bitcoin = { version = "0.32.5", features = ["rand-std"] }
4215
lazy_static = "1.5.0"
4316
script-macro = { path = "./macro" }
4417
stdext = "0.3.3"
45-

macro/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ license = "MIT"
1010
proc-macro = true
1111

1212
[dependencies]
13-
bitcoin = { git = "https://github.com/rust-bitcoin/rust-bitcoin", branch = "bitvm" }
13+
bitcoin = "0.32.5"
1414
quote = "1.0.23"
1515
proc-macro-error = "1.0.4"
1616
lazy_static = "1.4.0"
1717
hex = "0.4.3"
1818
proc-macro2 = "1.0.51"
19-

0 commit comments

Comments
 (0)