Cargo.toml
1 [package] 2 name = "fedimint-hkdf" 3 version = "0.4.0-alpha" 4 authors = ["The Fedimint Developers"] 5 edition = "2021" 6 description = "RFC5869 HKDF implementation on top of bitcoin_hashes" 7 license = "MIT" 8 readme = "../../README.md" 9 repository = "https://github.com/fedimint/fedimint" 10 11 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 12 [lib] 13 name = "hkdf" 14 path = "src/lib.rs" 15 16 [dependencies] 17 bitcoin_hashes = { workspace = true }