Skip to content

Commit

Permalink
chore(rust): v1.84.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deciduously committed Jan 31, 2025
1 parent fccd008 commit f363ba4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/rust/tangram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const metadata = {
};

const PROFILE = "minimal" as const;
export const VERSION = "1.84.0" as const;
export const VERSION = "1.84.1" as const;

export type ToolchainArg = {
host?: string;
Expand Down Expand Up @@ -48,7 +48,7 @@ export const self = tg.target(async (arg?: ToolchainArg) => {
const manifestArtifact = await std.download({
url: `https://static.rust-lang.org/dist/channel-rust-${VERSION}.toml`,
checksum:
"sha256:94c2c0ba9c6783815df45d680f0f20c7ea80d11b85ee8bbbc61354f3082cd0f5",
"sha256:bcc973d331ddba85edae5bb42a3d63129ef5b58157cb2980096f0be23cebccd0",
decompress: false,
extract: false,
});
Expand Down
4 changes: 2 additions & 2 deletions packages/std/wrap/workspace.tg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ export const rust = tg.target(
const hostSystem = std.triple.archAndOs(host);

// Download and parse the Rust manifest for the selected version.
const version = "1.84.0";
const version = "1.84.1";
const manifestFile = await tg.file(
await tg.download(
`https://static.rust-lang.org/dist/channel-rust-${version}.toml`,
"sha256:94c2c0ba9c6783815df45d680f0f20c7ea80d11b85ee8bbbc61354f3082cd0f5",
"sha256:bcc973d331ddba85edae5bb42a3d63129ef5b58157cb2980096f0be23cebccd0",
),
);
tg.assert(manifestFile instanceof tg.File);
Expand Down

0 comments on commit f363ba4

Please sign in to comment.