37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "keyfork-derive-util"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["secp256k1", "ed25519"]
|
|
secp256k1 = ["k256"]
|
|
ed25519 = ["ed25519-dalek"]
|
|
|
|
[dependencies]
|
|
keyfork-mnemonic-util = { version = "0.2.0", path = "../../util/keyfork-mnemonic-util", registry = "distrust" }
|
|
keyfork-bug = { version = "0.1.0", path = "../../util/keyfork-bug", registry = "distrust" }
|
|
|
|
# Included in Rust
|
|
digest = "0.10.7"
|
|
sha2 = "0.10.7"
|
|
|
|
# Rust-Crypto ecosystem, not personally audited
|
|
ripemd = "0.1.3"
|
|
hmac = { version = "0.12.1", features = ["std"] }
|
|
|
|
# Personally audited
|
|
serde = { version = "1.0.186", features = ["derive"] }
|
|
thiserror = "1.0.47"
|
|
|
|
# Optional, not personally audited
|
|
k256 = { version = "0.13.1", default-features = false, features = ["std", "arithmetic"], optional = true }
|
|
ed25519-dalek = { version = "2.0.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.4.1"
|
|
keyfork-slip10-test-data = { version = "0.1.0", path = "../../util/keyfork-slip10-test-data", registry = "distrust" }
|