Skip to content

Commit f69fde3

Browse files
committed
Update deps.
1 parent 9e9dfd2 commit f69fde3

File tree

4 files changed

+46
-40
lines changed

4 files changed

+46
-40
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
- WASM API
2727
- Added `BuilderInstruction.exes` field.
2828

29+
#### ⚙️ Internal
30+
31+
- Updated dependencies.
32+
2933
## 0.45.1
3034

3135
#### 🐞 Fixes

Cargo.lock

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

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ default-members = ["crates/cli"]
55

66
[workspace.dependencies]
77
anyhow = "1.0.95"
8-
async-trait = "0.1.85"
9-
clap = "4.5.27"
10-
clap_complete = "4.5.42"
8+
async-trait = "0.1.86"
9+
clap = "4.5.28"
10+
clap_complete = "4.5.44"
1111
compact_str = { version = "0.8.1", default-features = false, features = [
1212
"serde",
1313
] }
1414
dirs = "6.0.0"
1515
extism = ">=1.6.0" # Lower for consumers
1616
extism-pdk = "1.3.0"
17-
http-cache-reqwest = "0.15.0"
17+
http-cache-reqwest = "0.15.1"
1818
human-sort = "0.2.2"
1919
indexmap = "2.7.0"
2020
iocraft = "0.6.2"
2121
# iocraft = { git = "https://github.com/ccbrown/iocraft.git", branch = "main" }
22-
miette = "7.4.0"
22+
miette = "7.5.0"
2323
once_cell = "1.20.2"
2424
regex = { version = "1.11.1", default-features = false, features = ["std"] }
2525
reqwest = { version = "0.12.12", default-features = false, features = [
@@ -34,10 +34,10 @@ reqwest-middleware = { version = "0.4.0", default-features = false, features = [
3434
reqwest-netrc = "0.1.2"
3535
rustc-hash = "2.1.0"
3636
scc = "2.3.0"
37-
schematic = { version = "0.17.10", default-features = false }
37+
schematic = { version = "0.17.11", default-features = false }
3838
semver = { version = "1.0.25", features = ["serde"] }
3939
serde = { version = "1.0.217", features = ["derive"] }
40-
serde_json = "1.0.137"
40+
serde_json = "1.0.138"
4141
sha2 = "0.10.8"
4242
shell-words = "1.1.0"
4343
starbase = { version = "0.9.9" }

package/src/api-types.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -488,8 +488,10 @@ export type SourceLocation = ArchiveSource | GitSource;
488488
export type BuildInstruction = {
489489
/** A builder and its parameters for installing the builder. */
490490
instruction: {
491-
/** Main executable, relative from the source root. */
491+
/** Primary executable, relative from the source root. */
492492
exe: string;
493+
/** Secondary executables, relative from the source root. */
494+
exes: Record<string, string>;
493495
/** The Git source location for the builder. */
494496
git: GitSource;
495497
/** Unique identifier for this builder. */

0 commit comments

Comments
 (0)