Skip to content

Commit 6627c60

Browse files
committed
chore: roll forward to reflect sandbox refactor
1 parent 0eb7858 commit 6627c60

29 files changed

Lines changed: 1154 additions & 1647 deletions

bun.lock

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"dependencies": {
33
"@types/bun": "^1.3.11",
4-
"oxfmt": "^0.42.0",
5-
"oxlint": "^1.57.0"
4+
"oxfmt": "^0.43.0",
5+
"oxlint": "^1.58.0"
66
},
77
"scripts": {
88
"auto": "bun scripts/package_automation.ts $@",

packages/rust/tangram.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const metadata = {
2121
};
2222

2323
const PROFILE = "minimal" as const;
24-
export const VERSION = "1.94.0" as const;
24+
export const VERSION = "1.94.1" as const;
2525

2626
export type ToolchainArg = {
2727
/** Toolchain channel: "stable" (default), "nightly", or "nightly-YYYY-MM-DD" for pinned nightly. */
@@ -55,7 +55,7 @@ export const self = async (unresolvedArg?: tg.Unresolved<ToolchainArg>) => {
5555
if (channel === "stable" || channel === undefined) {
5656
manifestUrl = `https://static.rust-lang.org/dist/channel-rust-${VERSION}.toml`;
5757
manifestChecksum =
58-
"sha256:aaa177def36e01d539bee6bde95295230b9ce378f81057845db8d0ebe97898ee";
58+
"sha256:cc2f04dfc883549d683c8cc2a9393f523a3dfbd931f5d5eaef00303cca64a60d";
5959
} else if (channel === "nightly") {
6060
manifestUrl = "https://static.rust-lang.org/dist/channel-rust-nightly.toml";
6161
manifestChecksum = "sha256:any";

0 commit comments

Comments
 (0)