feat(primitives): Implement canonical JSON serialization (#90)

This commit is contained in:
Santiago Carmuega 2022-04-25 22:35:13 -03:00 committed by GitHub
parent 6fea71190d
commit ac757eb8e9
7 changed files with 167 additions and 1 deletions

View file

@ -20,3 +20,9 @@ pallas-crypto = { version = "0.8.0", path = "../pallas-crypto" }
pallas-codec = { version = "0.8.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"]