burn/examples/mnist-inference-web/Cargo.toml

26 lines
496 B
TOML
Raw Normal View History

[package]
authors = ["Dilshod Tadjibaev (@antimora)"]
edition = "2021"
license = "MIT OR Apache-2.0"
name = "mnist-inference-web"
publish = false
version = "0.11.0"
[lib]
crate-type = ["cdylib"]
[features]
2023-09-29 05:09:58 +08:00
default = ["ndarray"]
ndarray = ["burn/ndarray-no-std"]
wgpu = ["burn/wgpu"]
[dependencies]
2023-10-23 22:00:39 +08:00
burn = { path = "../../burn", default-features = false }
serde = { workspace = true }
wasm-bindgen = { version = "0.2.88" }
js-sys = "0.3.65"
2023-09-29 05:09:58 +08:00
[dev-dependencies]
pollster = { workspace = true }