[package] name = "cxmr-wasm" version = "0.0.1" authors = ["Ɓukasz Kurowski "] edition = "2018" license = "GPL-3.0" description = "Crypto-market WASM library." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] crate-type = ["cdylib"] [dependencies] # WebAssembly binding generator wasm-bindgen = "^0.2.56" # Platform dependent configuration cfg-if = "^0.1.10" # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires # all the `std::fmt` and `std::panicking` infrastructure, so isn't great for # code size when deploying. console_error_panic_hook = "^0.1.6" # `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size # compared to the default allocator's ~10K. It is slower than the default # allocator, however. wee_alloc = "^0.4.5" cxmr-currency = "0.0.1"