24 lines
805 B
TOML
24 lines
805 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", features = [] }
|
|
model = { path = "../model", features = ["dummy"] }
|
|
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"] }
|