Skip to content

Commit

Permalink
chore(rust): switch from nightly to stable 1.84.0
Browse files Browse the repository at this point in the history
closes #132
  • Loading branch information
deciduously committed Jan 10, 2025
1 parent 73f3f27 commit 093b8ad
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 76 deletions.
66 changes: 33 additions & 33 deletions packages/rust/proxy/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/rust/proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ futures = "0.3"
itertools = "0.14"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tangram_client = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "067268c2b6063f2f187c8b1268b409a04f5a0967" }
tangram_client = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "aacfa4701ecc4ba4eae4a26112a6d9654eddb677" }
tokio = { version = "1", default-features = false, features = [
"rt",
"fs",
Expand Down
6 changes: 3 additions & 3 deletions packages/rust/tangram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export const metadata = {
};

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

export type ToolchainArg = {
host?: string;
Expand All @@ -44,10 +45,9 @@ export const toolchain = tg.target(async (arg?: ToolchainArg) => {
}

// Download the Rust manifest for the selected version.
const date = "2025-01-06";
const manifestArtifact = await std.download({
url: `https://static.rust-lang.org/dist/${date}/channel-rust-nightly.toml`,
checksum: "unsafe",
url: `https://static.rust-lang.org/dist/channel-rust-${VERSION}.toml`,
checksum: "sha256:94c2c0ba9c6783815df45d680f0f20c7ea80d11b85ee8bbbc61354f3082cd0f5",
decompress: false,
extract: false,
});
Expand Down
Loading

0 comments on commit 093b8ad

Please sign in to comment.