Skip to content

Commit 3ca3953

Browse files
chore: Sync flake.lock from upstream
1 parent 1acb215 commit 3ca3953

17 files changed

Lines changed: 1129 additions & 667 deletions

File tree

dev-deps.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
cargo-binstall 1.17.4
2-
cargo-edit-upgrade 0.13.8
3-
cargo-expand 1.0.119
1+
cargo-binstall 1.17.7
2+
cargo-edit-upgrade 0.13.9
3+
cargo-expand 1.0.121
44
cargo generate 0.23.7
5-
cargo-nextest 0.9.124
5+
cargo-nextest 0.9.130
66
just 1.46.0
7-
obelisk 0.35.4
7+
obelisk 0.36.0
88
pkg-config 0.29.2
9-
rustc 1.93.0 (254b59607 2026-01-19)
10-
wasm-tools 1.244.0
11-
wasmtime 41.0.1
12-
node.js v22.22.0
9+
rustc 1.94.0 (4a4ef493e 2026-03-02)
10+
wasm-tools 1.245.1
11+
wasmtime 42.0.1
12+
node.js v22.22.1
1313
wizer 10.0.0
14-
tinygo version 0.40.1 linux/amd64 (using go version go1.25.5 and LLVM version 20.1.8)
14+
tinygo version 0.40.1 linux/amd64 (using go version go1.25.7 and LLVM version 20.1.8)
1515
wit-bindgen-go-cli 0.7.0
1616
ldd (GNU libc) 2.42

flake.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.93"
2+
channel = "1.94.0"
33
targets = ["wasm32-unknown-unknown", "wasm32-wasip2"]
44
components = ["rustfmt", "clippy", "rust-src", "rust-analyzer", "cargo"]

webhook/webhook-go/wit/deps/obelisk_types@4.1.0/obelisk_types@4.1.0.wit renamed to webhook/webhook-go/wit/deps/obelisk_types@4.2.0/obelisk_types@4.2.0.wit

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:types@4.1.0;
1+
package obelisk:types@4.2.0;
22

33
@since(version = 3.0.0)
44
interface time {
@@ -94,6 +94,10 @@ interface execution {
9494
/// Error variants that may occur when calling `-stub` extension functions.
9595
@since(version = 3.0.0)
9696
variant stub-error {
97+
/// execution was not found.
98+
execution-not-found,
99+
/// supplied return value does not type check.
100+
type-check-error(string),
97101
/// Conflict can happen when a second writer attempts to stub a value, while the
98102
/// value is not equal to the already stubbed value.
99103
conflict,
@@ -106,8 +110,38 @@ interface execution {
106110
timeout: option<duration>,
107111
// TODO: add `max-retries`, `retry_exp_backoff`
108112
}
113+
114+
@since(version = 4.2.0)
115+
variant schedule-json-error {
116+
/// See `Function` definition
117+
ffqn-parsing-error(string),
118+
function-not-found,
119+
type-check-error(string),
120+
}
109121
}
110122

123+
@since(version = 4.2.0)
124+
interface backtrace {
125+
@since(version = 4.2.0)
126+
record frame-symbol {
127+
func-name: option<string>,
128+
file: option<string>,
129+
line: option<u32>,
130+
col: option<u32>,
131+
}
132+
133+
@since(version = 4.2.0)
134+
record frame-info {
135+
module: string,
136+
func-name: string,
137+
symbols: list<frame-symbol>,
138+
}
139+
140+
@since(version = 4.2.0)
141+
record wasm-backtrace {
142+
frames: list<frame-info>,
143+
}
144+
}
111145

112146
@since(version = 4.0.0)
113147
interface join-set {

webhook/webhook-js/wit/deps/obelisk_types@4.1.0/obelisk_types@4.1.0.wit renamed to webhook/webhook-js/wit/deps/obelisk_types@4.2.0/obelisk_types@4.2.0.wit

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:types@4.1.0;
1+
package obelisk:types@4.2.0;
22

33
@since(version = 3.0.0)
44
interface time {
@@ -94,6 +94,10 @@ interface execution {
9494
/// Error variants that may occur when calling `-stub` extension functions.
9595
@since(version = 3.0.0)
9696
variant stub-error {
97+
/// execution was not found.
98+
execution-not-found,
99+
/// supplied return value does not type check.
100+
type-check-error(string),
97101
/// Conflict can happen when a second writer attempts to stub a value, while the
98102
/// value is not equal to the already stubbed value.
99103
conflict,
@@ -106,8 +110,38 @@ interface execution {
106110
timeout: option<duration>,
107111
// TODO: add `max-retries`, `retry_exp_backoff`
108112
}
113+
114+
@since(version = 4.2.0)
115+
variant schedule-json-error {
116+
/// See `Function` definition
117+
ffqn-parsing-error(string),
118+
function-not-found,
119+
type-check-error(string),
120+
}
109121
}
110122

123+
@since(version = 4.2.0)
124+
interface backtrace {
125+
@since(version = 4.2.0)
126+
record frame-symbol {
127+
func-name: option<string>,
128+
file: option<string>,
129+
line: option<u32>,
130+
col: option<u32>,
131+
}
132+
133+
@since(version = 4.2.0)
134+
record frame-info {
135+
module: string,
136+
func-name: string,
137+
symbols: list<frame-symbol>,
138+
}
139+
140+
@since(version = 4.2.0)
141+
record wasm-backtrace {
142+
frames: list<frame-info>,
143+
}
144+
}
111145

112146
@since(version = 4.0.0)
113147
interface join-set {

webhook/webhook-rs/wit/deps/obelisk_types@4.1.0/obelisk_types@4.1.0.wit renamed to webhook/webhook-rs/wit/deps/obelisk_types@4.2.0/obelisk_types@4.2.0.wit

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:types@4.1.0;
1+
package obelisk:types@4.2.0;
22

33
@since(version = 3.0.0)
44
interface time {
@@ -94,6 +94,10 @@ interface execution {
9494
/// Error variants that may occur when calling `-stub` extension functions.
9595
@since(version = 3.0.0)
9696
variant stub-error {
97+
/// execution was not found.
98+
execution-not-found,
99+
/// supplied return value does not type check.
100+
type-check-error(string),
97101
/// Conflict can happen when a second writer attempts to stub a value, while the
98102
/// value is not equal to the already stubbed value.
99103
conflict,
@@ -106,8 +110,38 @@ interface execution {
106110
timeout: option<duration>,
107111
// TODO: add `max-retries`, `retry_exp_backoff`
108112
}
113+
114+
@since(version = 4.2.0)
115+
variant schedule-json-error {
116+
/// See `Function` definition
117+
ffqn-parsing-error(string),
118+
function-not-found,
119+
type-check-error(string),
120+
}
109121
}
110122

123+
@since(version = 4.2.0)
124+
interface backtrace {
125+
@since(version = 4.2.0)
126+
record frame-symbol {
127+
func-name: option<string>,
128+
file: option<string>,
129+
line: option<u32>,
130+
col: option<u32>,
131+
}
132+
133+
@since(version = 4.2.0)
134+
record frame-info {
135+
module: string,
136+
func-name: string,
137+
symbols: list<frame-symbol>,
138+
}
139+
140+
@since(version = 4.2.0)
141+
record wasm-backtrace {
142+
frames: list<frame-info>,
143+
}
144+
}
111145

112146
@since(version = 4.0.0)
113147
interface join-set {

workflow/stargazers/workflow-go/wit/deps/obelisk_types@4.1.0/obelisk_types@4.1.0.wit renamed to workflow/stargazers/workflow-go/wit/deps/obelisk_types@4.2.0/obelisk_types@4.2.0.wit

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package obelisk:types@4.1.0;
1+
package obelisk:types@4.2.0;
22

33
@since(version = 3.0.0)
44
interface time {
@@ -94,6 +94,10 @@ interface execution {
9494
/// Error variants that may occur when calling `-stub` extension functions.
9595
@since(version = 3.0.0)
9696
variant stub-error {
97+
/// execution was not found.
98+
execution-not-found,
99+
/// supplied return value does not type check.
100+
type-check-error(string),
97101
/// Conflict can happen when a second writer attempts to stub a value, while the
98102
/// value is not equal to the already stubbed value.
99103
conflict,
@@ -106,8 +110,38 @@ interface execution {
106110
timeout: option<duration>,
107111
// TODO: add `max-retries`, `retry_exp_backoff`
108112
}
113+
114+
@since(version = 4.2.0)
115+
variant schedule-json-error {
116+
/// See `Function` definition
117+
ffqn-parsing-error(string),
118+
function-not-found,
119+
type-check-error(string),
120+
}
109121
}
110122

123+
@since(version = 4.2.0)
124+
interface backtrace {
125+
@since(version = 4.2.0)
126+
record frame-symbol {
127+
func-name: option<string>,
128+
file: option<string>,
129+
line: option<u32>,
130+
col: option<u32>,
131+
}
132+
133+
@since(version = 4.2.0)
134+
record frame-info {
135+
module: string,
136+
func-name: string,
137+
symbols: list<frame-symbol>,
138+
}
139+
140+
@since(version = 4.2.0)
141+
record wasm-backtrace {
142+
frames: list<frame-info>,
143+
}
144+
}
111145

112146
@since(version = 4.0.0)
113147
interface join-set {

0 commit comments

Comments
 (0)