Update rust-bitcoin
[rust-lightning] / lightning-c-bindings / Cargo.toml
1 [package]
2 name = "lightning-c-bindings"
3 version = "0.0.1"
4 authors = ["Matt Corallo"]
5 license = "Apache-2.0"
6 edition = "2018"
7 description = """
8 Utilities to fetch the chain from Bitcoin Core REST/RPC Interfaces and feed them into Rust Lightning.
9 """
10
11 [lib]
12 name = "ldk"
13 crate-type = ["staticlib"
14 # Note that the following line is matched exactly by genbindings to turn off dylib creation
15 ,"cdylib"]
16
17 [dependencies]
18 bitcoin = "0.26"
19 lightning = { version = "0.0.12", path = "../lightning" }
20
21 # We eventually want to join the root workspace, but for now, the bindings generation is
22 # a bit brittle and we don't want to hold up other developers from making changes just
23 # because they break the bindings
24 [workspace]