chore: use published coins-ledger (#132)
This commit is contained in:
parent
5f292670fc
commit
98a00e8b7a
|
@ -349,7 +349,8 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "coins-ledger"
|
||||
version = "0.1.0"
|
||||
source = "git+https://github.com/summa-tx/bitcoins-rs?branch=master#f53291fe9c5cae8007ff6e3c5384a5db839c9963"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a1d8652edc472a0727097656a9a48225927bfae586a225bb97bdcd930b847a50"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"blake2b_simd",
|
||||
|
|
|
@ -68,6 +68,7 @@ impl Context {
|
|||
// export all the created data types
|
||||
pub use #name_mod::*;
|
||||
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
mod #name_mod {
|
||||
#imports
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ ethers-core = { version = "0.1.3", path = "../ethers-core" }
|
|||
thiserror = { version = "1.0.22", default-features = false }
|
||||
serde = { version = "1.0.118", default-features = false }
|
||||
|
||||
coins-ledger = { git = "https://github.com/summa-tx/bitcoins-rs", default-features = false, optional = true, branch = "master" }
|
||||
coins-ledger = { version = "0.1.0", default-features = false, optional = true }
|
||||
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
||||
async-trait = { version = "0.1.40", default-features = false }
|
||||
elliptic-curve = { version = "0.8.4", default-features = false }
|
||||
|
|
Loading…
Reference in New Issue