Skip to content

Commit a770676

Browse files
committed
Remove Rust version restriction in 'compute build'
There is no longer any need to block new versions of Rust; the block for version 1.91.0 will continue to be in place though as that version produces broken WASM packages.
1 parent 9818325 commit a770676

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.fastly/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ toolchain_constraint = ">= 1.21" # Go toolchain constraint for use wit
1818
toolchain_constraint_tinygo = ">= 1.18" # Go toolchain constraint for use with TinyGo.
1919

2020
[language.rust]
21-
toolchain_constraint = ">= 1.78 != 1.91.0 < 1.93" # Rust 1.91.0 produces broken WASM packages which crash when handling requests
21+
toolchain_constraint = ">= 1.78 != 1.91.0" # Rust 1.91.0 produces broken WASM packages which crash when handling requests
2222
wasm_wasi_target = "wasm32-wasip1"
2323

2424
[wasm-tools]

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- feat(service/alert): moved the `alerts` command to the `service alert` command, with an unlisted and deprecated alias of `alerts` ([#1616](https://github.com/fastly/cli/pull/1626))
2323
- feat(service/dictionary): moved the `dictionary` command under the `service` command, with an unlisted and deprecated alias of `dictionary` ([#1621](https://github.com/fastly/cli/pull/1630))
2424
- feat(service/ratelimit): moved the `rate-limit` commands under the `service` command, with an unlisted and deprecated alias of `rate-limit` ([#1632](https://github.com/fastly/cli/pull/1632))
25+
- feat(compute/build): Remove Rust version restriction, allowing 1.93.0 and later versions to be used. ([#TBD](https://github.com/fastly/cli/pull/TBD))
2526

2627
### Bug fixes:
2728
- fix(compute/serve): ensure hostname has a port nubmer when building pushpin routes ([#1631](https://github.com/fastly/cli/pull/1631))

0 commit comments

Comments
 (0)