Remove unused internals dependency

This commit is contained in:
Tobin C. Harding 2023-09-22 12:27:53 +10:00
parent 675fd54c95
commit 34b20dfed1
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
3 changed files with 2 additions and 5 deletions

View File

@ -88,7 +88,6 @@ dependencies = [
name = "bitcoin_hashes"
version = "0.13.0"
dependencies = [
"bitcoin-internals",
"core2",
"hex-conservative",
"schemars",

View File

@ -87,7 +87,6 @@ dependencies = [
name = "bitcoin_hashes"
version = "0.13.0"
dependencies = [
"bitcoin-internals",
"core2",
"hex-conservative",
"schemars",

View File

@ -14,8 +14,8 @@ exclude = ["tests", "contrib"]
[features]
default = ["std"]
std = ["alloc", "internals/std", "hex/std"]
alloc = ["internals/alloc", "hex/alloc"]
std = ["alloc", "hex/std"]
alloc = ["hex/alloc"]
serde-std = ["serde/std"]
# If you want I/O you must enable either "std" or "core2".
core2 = ["actual-core2", "hex/core2"]
@ -27,7 +27,6 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
internals = { package = "bitcoin-internals", version = "0.2.0" }
hex = { package = "hex-conservative", version = "0.1.1", default-features = false }
schemars = { version = "0.8.3", optional = true }