summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAntoine A <>2021-11-12 11:54:29 +0100
committerAntoine A <>2021-11-12 11:54:29 +0100
commit94b9f89b75ff1925948a896476c91be2dbee310a (patch)
treef13f8b6ea016c8b651bda4f62a54865eff81b076 /Cargo.lock
parent4e1f47bcc56639427b99de6bff49830ee586b63d (diff)
downloaddepolymerization-94b9f89b75ff1925948a896476c91be2dbee310a.tar.gz
depolymerization-94b9f89b75ff1925948a896476c91be2dbee310a.tar.bz2
depolymerization-94b9f89b75ff1925948a896476c91be2dbee310a.zip
Improve encode_segwit_msg security and perf
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock48
1 files changed, 48 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 7f356d7..f3e80ad 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -303,12 +303,14 @@ name = "depolymerization"
version = "0.1.0"
dependencies = [
"argh",
+ "bech32",
"bitcoin-bech32",
"bitcoincore-rpc",
"bs58",
"criterion",
"digest",
"fastrand",
+ "rand",
"rustyline",
]
@@ -586,6 +588,12 @@ dependencies = [
]
[[package]]
+name = "ppv-lite86"
+version = "0.2.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"
+
+[[package]]
name = "proc-macro2"
version = "1.0.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -614,6 +622,46 @@ dependencies = [
]
[[package]]
+name = "rand"
+version = "0.8.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
+dependencies = [
+ "libc",
+ "rand_chacha",
+ "rand_core",
+ "rand_hc",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
+dependencies = [
+ "ppv-lite86",
+ "rand_core",
+]
+
+[[package]]
+name = "rand_core"
+version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
+dependencies = [
+ "getrandom",
+]
+
+[[package]]
+name = "rand_hc"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
+dependencies = [
+ "rand_core",
+]
+
+[[package]]
name = "rayon"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"