Skip to content

Commit 0b9959e

Browse files
authored
Merge pull request #12 from mikkelhegn/example
2 parents af3cf11 + cec7624 commit 0b9959e

File tree

6 files changed

+81
-0
lines changed

6 files changed

+81
-0
lines changed

example/hello-world/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.spin/
2+
/target

example/hello-world/Cargo.lock

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/hello-world/Cargo.toml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[workspace]
2+
3+
[package]
4+
name = "hello_world"
5+
version = "0.1.0"
6+
edition = "2021"
7+
8+
[package.metadata.component]
9+
package = "component:command"
10+
11+
[package.metadata.component.dependencies]
12+
13+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
14+
15+
[dependencies]
16+
bitflags = "2.5.0"
17+
wit-bindgen-rt = "0.24.0"

example/hello-world/spin.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
spin_manifest_version = 2
2+
3+
[application]
4+
authors = ["Mikkel Mørk Hegnhøj <[email protected]>"]
5+
description = "Just a command trigger"
6+
name = "command-trigger-hello-world"
7+
version = "0.1.0"
8+
9+
[[trigger.command]]
10+
component = "hello-world"
11+
12+
[component.hello-world]
13+
source = "target/wasm32-wasi/release/hello_world.wasm"
14+
build = ["cargo component build --target wasm32-wasi --release"]
15+

example/hello-world/src/bindings.rs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Generated by `wit-bindgen` 0.21.0. DO NOT EDIT!
2+
// Options used:
3+
4+
#[cfg(target_arch = "wasm32")]
5+
#[link_section = "component-type:wit-bindgen:0.21.0:hello_world:encoded world"]
6+
#[doc(hidden)]
7+
pub static __WIT_BINDGEN_COMPONENT_TYPE: [u8; 173] = *b"\
8+
\0asm\x0d\0\x01\0\0\x19\x16wit-component-encoding\x04\0\x07,\x01A\x02\x01A\0\x04\
9+
\x01!component:hello_world/hello_world\x04\0\x0b\x11\x01\0\x0bhello_world\x03\0\0\
10+
\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit-component\x070.201.0\x10wit-bind\
11+
gen-rust\x060.21.0";
12+
13+
#[inline(never)]
14+
#[doc(hidden)]
15+
#[cfg(target_arch = "wasm32")]
16+
pub fn __link_custom_section_describing_imports() {
17+
wit_bindgen_rt::maybe_link_cabi_realloc();
18+
}

example/hello-world/src/main.rs

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#[allow(warnings)]
2+
//mod bindings;
3+
4+
fn main() {
5+
println!("Hello, world!");
6+
}

0 commit comments

Comments
 (0)