feat: Introduce Addresses crate (#137)
This commit is contained in:
parent
50d1c7d45c
commit
8bdf79beb2
7 changed files with 747 additions and 12 deletions
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pallas-primitives"
|
||||
description = "Ledger primitives and cbor codec for the different Cardano eras"
|
||||
version = "0.9.1"
|
||||
name = "pallas-addresses"
|
||||
description = "Ergonomic library to work with different Cardano addresses"
|
||||
version = "0.11.0-alpha.0"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/txpipe/pallas"
|
||||
homepage = "https://github.com/txpipe/pallas"
|
||||
|
|
@ -14,14 +14,8 @@ authors = [
|
|||
|
||||
[dependencies]
|
||||
hex = "0.4.3"
|
||||
log = "0.4.14"
|
||||
pallas-crypto = { version = "0.9.0", path = "../pallas-crypto" }
|
||||
pallas-codec = { version = "0.9.0", path = "../pallas-codec" }
|
||||
pallas-crypto = { version = "0.11.0-alpha.0", path = "../pallas-crypto" }
|
||||
pallas-codec = { version = "0.11.0-alpha.0", path = "../pallas-codec" }
|
||||
base58 = "0.2.0"
|
||||
bech32 = "0.8.1"
|
||||
serde = { version ="1.0.136", optional = true }
|
||||
serde_json = { version ="1.0.79", optional = true }
|
||||
|
||||
[features]
|
||||
json = ["serde", "serde_json"]
|
||||
default = ["json"]
|
||||
thiserror = "1.0.31"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue