-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 851 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "zaddr_wasm_parser"
version = "0.1.0"
edition = "2021"
description = "WASM wrapper around the official Rust zcash_address library for parsing and validating Zcash Unified Addresses."
repository = "https://github.com/ruzcash/zaddr_wasm_parser"
license = "MIT OR Apache-2.0"
categories = ["cryptography::cryptocurrencies", "encoding"]
keywords = ["zcash", "address", "sapling", "unified"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = "0.2"
serde-wasm-bindgen = "0.6"
zcash_address = "0.7.0"
zcash_protocol = "0.5.1"
regex = "1.11"
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
web-sys = { version = "0.3", features = ["console"] }
wasm-bindgen-test = "0.3"
assert_matches = "1.5"
[profile.release]
panic = "abort"
opt-level = 2
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"