File tree Expand file tree Collapse file tree 10 files changed +17
-15
lines changed
templates/component/http-hello-world Expand file tree Collapse file tree 10 files changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -9,20 +9,21 @@ Writing a wasmCloud Capability Provider? Check out the [Go Provider SDK](https:/
99# Setup
1010
1111Requires:
12- * [ ` tinygo ` ] ( https://tinygo.org/getting-started/install/ ) 0.33.0 or above.
13- * [ ` wasm-tools ` ] ( https://github.com/bytecodealliance/wasm-tools?tab=readme-ov-file#installation ) 1.220.0 or above.
12+
13+ - [ ` tinygo ` ] ( https://tinygo.org/getting-started/install/ ) 0.33.0 or above.
14+ - [ ` wasm-tools ` ] ( https://github.com/bytecodealliance/wasm-tools?tab=readme-ov-file#installation ) 1.220.0 or above.
1415
1516Import ` go.wasmcloud.dev/component ` in your Go module.
1617
1718``` bash
18- go get go.wasmcloud.dev/
[email protected] .
5 19+ go get go.wasmcloud.dev/
[email protected] .
6 1920```
2021
2122Import the SDK WIT. In ` wit/deps.toml ` :
2223
2324``` toml
2425
25- wasmcloud-component = " https://github.com/wasmCloud/component-sdk-go/archive/v0.0.5 .tar.gz"
26+ wasmcloud-component = " https://github.com/wasmCloud/component-sdk-go/archive/v0.0.6 .tar.gz"
2627
2728```
2829
Original file line number Diff line number Diff line change 55require (
66 go.bytecodealliance.org v0.5.0
77 go.bytecodealliance.org/cm v0.1.0
8- go.wasmcloud.dev/component v0.0.5
8+ go.wasmcloud.dev/component v0.0.6
99)
1010
1111require (
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ require (
66 github.com/julienschmidt/httprouter v1.3.0
77 go.bytecodealliance.org v0.5.0
88 go.bytecodealliance.org/cm v0.1.0
9- go.wasmcloud.dev/component v0.0.5
9+ go.wasmcloud.dev/component v0.0.6
1010 go.wasmcloud.dev/wadge v0.7.0
1111)
1212
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ require (
77 github.com/wagslane/go-password-validator v0.3.0
88 go.bytecodealliance.org v0.5.0
99 go.bytecodealliance.org/cm v0.1.0
10- go.wasmcloud.dev/component v0.0.5
10+ go.wasmcloud.dev/component v0.0.6
1111 go.wasmcloud.dev/wadge v0.7.0
1212)
1313
Original file line number Diff line number Diff line change @@ -4,12 +4,13 @@ go 1.24
44
55require (
66 github.com/stretchr/testify v1.10.0
7- go.bytecodealliance.org v0.5.0
87 go.bytecodealliance.org/cm v0.1.0
9- go.wasmcloud.dev/component v0.0.5
8+ go.wasmcloud.dev/component v0.0.6
109 go.wasmcloud.dev/wadge v0.7.0
1110)
1211
12+ require go.bytecodealliance.org v0.5.0 // indirect
13+
1314require (
1415 github.com/bytecodealliance/wasm-tools-go v0.3.2 // indirect
1516 github.com/coreos/go-semver v0.3.1 // indirect
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ require (
66 github.com/stretchr/testify v1.10.0
77 go.bytecodealliance.org v0.5.0
88 go.bytecodealliance.org/cm v0.1.0
9- go.wasmcloud.dev/component v0.0.5
9+ go.wasmcloud.dev/component v0.0.6
1010 go.wasmcloud.dev/wadge v0.7.0
1111)
1212
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ require (
88 github.com/stretchr/testify v1.10.0
99 go.bytecodealliance.org v0.5.0
1010 go.bytecodealliance.org/cm v0.1.0
11- go.wasmcloud.dev/component v0.0.5
11+ go.wasmcloud.dev/component v0.0.6
1212 go.wasmcloud.dev/wadge v0.7.0
1313)
1414
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ require (
77 go.bytecodealliance.org/cm v0.1.0
88 go.opentelemetry.io/otel v1.34.0
99 go.opentelemetry.io/otel/sdk v1.34.0
10- go.wasmcloud.dev/component v0.0.5
10+ go.wasmcloud.dev/component v0.0.6
1111 go.wasmcloud.dev/x/wasitel v0.0.1
1212)
1313
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ go 1.23.0
55require (
66 go.bytecodealliance.org v0.5.0
77 go.bytecodealliance.org/cm v0.1.0
8- go.wasmcloud.dev/component v0.0.5
8+ go.wasmcloud.dev/component v0.0.6
99 go.wasmcloud.dev/wadge v0.7.0
1010)
1111
@@ -23,4 +23,4 @@ require (
2323 golang.org/x/sync v0.10.0 // indirect
2424 golang.org/x/sys v0.29.0 // indirect
2525 golang.org/x/tools v0.28.0 // indirect
26- )
26+ )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ require (
99 go.opentelemetry.io/otel/sdk/log v0.10.0
1010 go.opentelemetry.io/otel/sdk/metric v1.34.0
1111 go.opentelemetry.io/otel/trace v1.34.0
12- go.wasmcloud.dev/component v0.0.5
12+ go.wasmcloud.dev/component v0.0.6
1313)
1414
1515require (
You can’t perform that action at this time.
0 commit comments