-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1.05 KB
/
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
40
41
42
[package]
authors = ["Stig Johan Berggren <[email protected]>"]
categories = ["wasm"]
description = "Demonstrasjon av norske datakilder tilgjengelig via API-er på Internett"
edition = "2018"
license = "Apache-2.0/MIT"
name = "norske-api-er"
readme = "./README.md"
repository = "https://github.com/stigjb/norske-api-er.git"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
chrono = { version = "*", features = ["serde"] }
log = "0.4.8"
serde = "1.0.106"
serde_json = "1.0.51"
wasm-bindgen = { version = "= 0.2.60", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.10"
wasm-logger = "0.2.0"
web-sys = { version = "0.3.37", features = [
"Document",
"Element",
"Headers",
"HtmlCollection",
"Request",
"RequestInit",
"RequestMode",
"Response",
"Window",
] }
wee_alloc = "0.4.5"
yew = "0.15.0"
yew-components = "0.1.0"
yew-router = "0.12.1"
chrono-tz = "0.5.1"
[dev-dependencies]
wasm-bindgen-test = "0.3.10"