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

27 lines
536 B
TOML
Raw Permalink Normal View History

[package]
authors = ["Dilshod Tadjibaev (@antimora)"]
edition.workspace = true
2024-05-29 05:51:20 +08:00
license = "MIT OR Apache-2.0"
name = "mnist-inference-web"
publish = false
version.workspace = true
[lib]
crate-type = ["cdylib"]
[features]
2023-09-29 05:09:58 +08:00
default = ["ndarray"]
2023-12-01 22:48:28 +08:00
ndarray = ["burn/ndarray"]
2023-09-29 05:09:58 +08:00
wgpu = ["burn/wgpu"]
[dependencies]
burn = { path = "../../crates/burn", default-features = false }
2023-10-23 22:00:39 +08:00
serde = { workspace = true }
2023-12-05 20:30:29 +08:00
console_error_panic_hook = { workspace = true }
2023-09-29 05:09:58 +08:00
2024-05-29 05:51:20 +08:00
# Wasm dependencies
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
js-sys = "0.3"