blob: 34281a3e864c618e863e2a53f3f6b457f44ada55 (
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
|
[package]
name = "bcard-wasm-webapp"
version = "0.1.0"
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"]
|