mirror of https://github.com/tracel-ai/burn.git
27 lines
536 B
TOML
27 lines
536 B
TOML
[package]
|
|
authors = ["Dilshod Tadjibaev (@antimora)"]
|
|
edition.workspace = true
|
|
license = "MIT OR Apache-2.0"
|
|
name = "mnist-inference-web"
|
|
publish = false
|
|
version.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[features]
|
|
default = ["ndarray"]
|
|
|
|
ndarray = ["burn/ndarray"]
|
|
wgpu = ["burn/wgpu"]
|
|
|
|
[dependencies]
|
|
burn = { path = "../../crates/burn", default-features = false }
|
|
serde = { workspace = true }
|
|
console_error_panic_hook = { workspace = true }
|
|
|
|
# Wasm dependencies
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
js-sys = "0.3"
|