bazzar/crates/web/Cargo.toml

24 lines
852 B
TOML

[package]
name = "web"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
chrono = { version = "*", features = ["wasm-bindgen", "wasmbind"] }
gloo-timers = { version = "*", features = ["futures"] }
indexmap = { version = "1", default-features = false, features = ["serde-1", "std"] }
js-sys = { version = "0.3.57", features = [] }
model = { path = "../model", features = ["dummy"] }
rusty-money = { version = "0.4.1", features = ["iso"] }
seed = { version = "0.9.1", features = [] }
serde = { version = "1.0.137", features = ["derive"] }
serde-wasm-bindgen = { version = "0.4.2" }
serde_json = { version = "1.0.81" }
thiserror = { version = "1.0.31" }
uuid = { version = "1.0.0", features = ["v4"] }
wasm-bindgen = { version = "0.2.80", features = ["default"] }
web-sys = { version = "0.3.57", features = ["Navigator"] }