summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 6e1a6ada4f33689b2afab3300dc7a78dd8c1d72a (plain)
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
40
41
[package]
name = "wasm-card"
version = "0.1.3"
authors = ["jelemux <jeremias.weber@protonmail.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = "0.2.68"
js-sys = "0.3.45"
console_error_panic_hook = "0.1.6"
wee_alloc = "0.4.5"
yewtil = "0.3.2"
printpdf = "0.3.3"
base64 = "0.13.0"
vobject = "^0.7"
genpdf = { path = "../genpdf-rs" }
qrcodegen = "1.6.0"
boolinator = "2.4.0"

[dependencies.yew]
version = "0.17.4"
features = ["services"]

[dependencies.chrono]
version = "0.4.19"
default-features = false
features = ["wasmbind", "js-sys"]

[dependencies.uuid]
version = "0.8"
default-features = false
features = ["wasm-bindgen", "v4"]

[dependencies.web-sys]
version = "0.3.47"
features = ["FileReaderSync"]