bazzar/crates/web/Cargo.toml

24 lines
805 B
TOML
Raw Normal View History

2022-05-05 16:30:25 +02:00
[package]
name = "web"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
2022-05-15 13:08:42 +02:00
chrono = { version = "*", features = ["wasm-bindgen", "wasmbind"] }
2022-05-05 16:30:25 +02:00
gloo-timers = { version = "*", features = ["futures"] }
2022-11-01 22:10:27 +01:00
indexmap = { version = "1", default-features = false, features = ["serde-1", "std"] }
2022-12-20 15:34:20 +01:00
js-sys = { version = "0", features = [] }
2022-11-04 18:40:14 +01:00
model = { path = "../model", features = ["dummy"] }
2022-12-20 15:34:20 +01:00
rusty-money = { version = "0", features = ["iso"] }
seed = { version = "0", features = [] }
serde = { version = "1", features = ["derive"] }
serde-wasm-bindgen = { version = "0" }
serde_json = { version = "1" }
thiserror = { version = "1" }
uuid = { version = "1", features = ["v4"] }
wasm-bindgen = { version = "0", features = ["default"] }
web-sys = { version = "0", features = ["Navigator"] }