32 lines
812 B
TOML
32 lines
812 B
TOML
[package]
|
|
authors = ["Jonathan Richard"]
|
|
edition.workspace = true
|
|
license = "MIT OR Apache-2.0"
|
|
name = "remote-inference-web"
|
|
publish = false
|
|
version.workspace = true
|
|
description = "Run a Burn model in the browser with computation executed on a remote Iroh GPU peer"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[features]
|
|
default = ["flex"]
|
|
|
|
# Local fallback backend, only for a sensible `Device::default()`; compute runs on the remote.
|
|
flex = ["burn/flex"]
|
|
|
|
[dependencies]
|
|
burn = { workspace = true, features = ["extension", "remote"] }
|
|
blake3 = { version = "1", default-features = false }
|
|
console_error_panic_hook = { workspace = true }
|
|
iroh = { workspace = true }
|
|
|
|
# Wasm dependencies
|
|
wasm-bindgen = { workspace = true }
|
|
wasm-bindgen-futures = { workspace = true }
|
|
js-sys = { workspace = true }
|