-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 938 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 938 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
34
35
36
37
38
[package]
name = "json2excel-wasm"
version = "0.2.0"
authors = ["Aleksei Kolosov <akolosov@xbsoftware.com>", "Maksim Kozhukh <mk@mono.ink>"]
edition = "2018"
[lib]
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[profile.release]
lto = true
opt-level = "s"
debug = false
panic = "abort"
[dependencies]
wasm-bindgen = "0.2.84"
serde = { version="^1.0.160", features = ["derive"] }
serde-wasm-bindgen = "0.5.0"
serde_json = "1.0"
zip = { version = "0.6.4", default-features = false, features = ["deflate"] }
wee_alloc = { version = "0.4.5", optional = true }
console_error_panic_hook = { version = "0.1.6", optional = true }
gloo-utils = { version = "0.1", features = ["serde"] }
regex = { version = "1.7.3", default-features = false, features = ["std" , "perf"] }
[dependencies.web-sys]
version = "0.3"
features = [
"console",
]
[dev-dependencies]
wasm-bindgen-test = "0.3.13"