Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ members = [
"kiln-platform",
"kiln-panic",
"kiln-build-core",
"kiln-builtins",
"cargo-kiln"]
exclude = ["examples/wasi-nn/inference_module"]
resolver = "2" # Use edition 2021 resolver
Expand Down
16 changes: 16 additions & 0 deletions kiln-builtins/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "kiln-builtins"
version = "0.1.0"
edition = "2024"
description = "Runtime builtins for synth-compiled WebAssembly on embedded targets"
license = "MIT"

# rlib for workspace builds/tests; use --crate-type staticlib for ARM targets:
# cargo rustc -p kiln-builtins --target thumbv7em-none-eabi --release -- --crate-type staticlib
[lib]
crate-type = ["rlib"]

[dependencies]

[features]
default = []
Loading
Loading