[package] name = "cml-multi-era-wasm" version = "6.0.1" edition = "2018" authors = ["dcSpark"] license = "MIT" description = "Multiplatform WASM SDK for era-agnostic Cardano blockchain parsing" documentation = "https://github.com/dcSpark/cardano-multiplatform-lib/docs" repository = "https://github.com/dcSpark/cardano-multiplatform-lib" readme = "../../README.md" keywords = ["cardano"] [lib] crate-type = ["cdylib", "rlib"] [dependencies] cml-chain = { path = "../../chain/rust", version = "6.0.1", features = ["used_from_wasm"] } cml-chain-wasm = { path = "../../chain/wasm", version = "6.0.1" } cml-crypto = { path = "../../crypto/rust", version = "6.0.1" } cml-crypto-wasm = { path = "../../crypto/wasm", version = "6.0.1" } cml-core = { path = "../../core/rust", version = "6.0.1" } cml-core-wasm = { path = "../../core/wasm", version = "6.0.1" } cml-multi-era = { path = "../rust", version = "6.0.1", features = ["used_from_wasm"] } cbor_event = "2.4.0" hex = "0.4.0" linked-hash-map = "0.5.3" serde_json = "1.0.57" serde-wasm-bindgen = "0.4.5" wasm-bindgen = { version = "0.2.87" } # not actual multi-era dependencies but we re-export these for the wasm builds cml-cip25-wasm = { path = "../../cip25/wasm", version = "6.0.1" } cml-cip36-wasm = { path = "../../cip36/wasm", version = "6.0.1" }