Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/wasi-nn/examples/classification-component-onnx/Cargo.toml
1692 views
1
[package]
2
name = "classification-component-onnx"
3
version = "0.1.0"
4
edition = "2021"
5
authors = ["The Wasmtime Project Developers"]
6
readme = "README.md"
7
publish = false
8
9
[dependencies]
10
wit-bindgen = { version = "0.32.0", default-features = false, features = ["macros"] }
11
image = { version = "0.25.2", default-features = false, features = ["jpeg"] }
12
ndarray = "0.16.1"
13
14
[profile.release]
15
codegen-units = 1
16
opt-level = "s"
17
debug = false
18
strip = true
19
lto = true
20
21
[package.metadata.component]
22
package = "component:classification-component-onnx"
23
24
[package.metadata.component.target.dependencies]
25
26
# This crate is built with the wasm32-wasip1 target, so it's separate
27
# from the main Wasmtime build, so use this directive to exclude it
28
# from the parent directory's workspace.
29
[workspace]
30
31