-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
29 lines (24 loc) · 906 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
[package]
name = "pycc-tx"
version = "0.1.0"
authors = ["ssadler <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pycctx"
crate-type = ["dylib"]
[dependencies.pyo3]
version = "0.9.1"
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
[dependencies]
chain = { git = "https://github.com/ssadler/parity-bitcoin.git" }
keys = { git = "https://github.com/ssadler/parity-bitcoin.git" }
primitives = { git = "https://github.com/ssadler/parity-bitcoin.git" }
script = { git = "https://github.com/ssadler/parity-bitcoin.git" }
serialization = { git = "https://github.com/ssadler/parity-bitcoin.git" }
bitcrypto = { git = "https://github.com/ssadler/parity-bitcoin.git" }
cryptoconditions = { path = "./cryptoconditions" }
libsecp256k1 = "0.2.2"
rustc-hex = "2"