feat: Introduce Bech32 crate (#176)

This commit is contained in:
sumit2bk 2022-08-18 18:28:39 -07:00 committed by GitHub
parent 90fa3b02f0
commit 5a34f54a46
4 changed files with 271 additions and 0 deletions

16
pallas-bech32/Cargo.toml Normal file
View file

@ -0,0 +1,16 @@
[package]
name = "pallas-bech32"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
license = "Apache-2.0"
readme = "README.md"
authors = [
"Sumit Bakhli <sumit2bk@gmail.com>",
]
[dependencies]
bech32 = "0.9.0"
blake2 = "0.10.4"
hex = "0.4.3"