2023-05-07 16:31:17 +00:00
|
|
|
[package]
|
|
|
|
name = "namehash"
|
2023-05-07 21:19:35 +00:00
|
|
|
version = "0.1.2"
|
2023-05-07 16:31:17 +00:00
|
|
|
edition = "2021"
|
|
|
|
description = "CLI program for hashing domain names according to EIP-137"
|
|
|
|
homepage = "https://github.com/supleed2/namehash-rs"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
repository = "https://github.com/supleed2/namehash-rs"
|
|
|
|
# documentation = ""
|
|
|
|
# keywords = []
|
|
|
|
# categories = []
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-06 21:59:11 +00:00
|
|
|
clap = { version = "4.5.8", features = ["derive"] }
|
2023-05-07 16:31:17 +00:00
|
|
|
hex = "0.4.3"
|
|
|
|
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|