-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (32 loc) · 931 Bytes
/
Cargo.toml
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
34
35
36
37
38
39
[package]
name = "rl2020"
version = "0.2.0"
edition = "2021"
authors = ["Andrea Giacobino <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/noandrea/rl2020.rs"
homepage = "https://github.com/noandrea/rl2020.rs"
description = "Implementation of the RevocationList2020 format"
keywords = ["SSI", "identity", "privacy", "revocation-lists", "revocation-registry"]
[lib]
crate-type = ["cdylib", "lib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
base64 = "0.13.0"
console_error_panic_hook = { version = "0.1.7", optional = true }
flate2 = "1.0.24"
serde = "1.0.144"
serde_derive = "1.0.144"
serde_json = "1.0.85"
wasm-bindgen = "0.2.83"
[dev-dependencies]
rand = "0.8.5"
wasm-bindgen-test = "0.3.33"
[package.metadata.wasm-pack.profile.release]
# wasm-opt = false
# wasm-opt = ['-Os', '--enable-mutable-globals']
wasm-opt = ['-Os']
[profile.release]
lto = true
opt-level = 's'