Skip to content

Commit 8ebc470

Browse files
committed
Update to nightly-2025-06-01
1 parent 1e0ee68 commit 8ebc470

6 files changed

Lines changed: 11 additions & 13 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ log = "0.4"
88
anyhow = "1.0.75"
99
serde = { version = "1.0.192", features = ["derive"] }
1010
serde_json = "1.0.108"
11-
rustc_utils = { version = "=0.13.0-nightly-2025-03-03", features = ["serde"] }
11+
rustc_utils = { git = "https://github.com/DJMcNab/rustc_plugin", rev = "dee1d90c770bb44a6c3479c1f2a05cd4890e3010" }
1212
fluid-let = "1.0.0"
1313
itertools = "0.14.0"
1414

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ If rustup fails, especially with an error like "could not rename the downloaded
4242
To solve the issue, go to the command line and run:
4343

4444
```bash
45-
rustup toolchain install nightly-2025-03-03 -c rust-src -c rustc-dev -c llvm-tools-preview
45+
rustup toolchain install nightly-2025-06-01 -c rust-src -c rustc-dev -c llvm-tools-preview
4646
```
4747

4848
Then go back to VSCode and click "Continue" to let Argus continue installing.

crates/argus-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT"
1212
[dependencies]
1313
argus-lib = { version = "0.1.19", path = "../argus" }
1414
argus-ext = { version = "0.1.19", path = "../argus-ext" }
15-
rustc_plugin = "=0.13.0-nightly-2025-03-03"
15+
rustc_plugin = { git = "https://github.com/DJMcNab/rustc_plugin", rev = "dee1d90c770bb44a6c3479c1f2a05cd4890e3010" }
1616

1717
rustc_utils.workspace = true
1818
log.workspace = true

crates/argus/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ ts-rs = { version = "7.1.1", features = [
3737
], optional = true }
3838

3939
[dev-dependencies]
40-
argus-lib = { path = ".", features = ["testing"] }
41-
argus-ser = { path = "../argus-ser", features = ["testing"] }
42-
rustc_utils = { version = "=0.13.0-nightly-2025-03-03", features = [
40+
rustc_utils = { git = "https://github.com/DJMcNab/rustc_plugin", rev = "dee1d90c770bb44a6c3479c1f2a05cd4890e3010", features = [
4341
"serde",
4442
"ts-rs",
4543
] }
44+
argus-lib = { path = ".", features = ["testing"] }
45+
argus-ser = { path = "../argus-ser", features = ["testing"] }
4646
test-log = "0.2.11"
4747
env_logger = "0.11.7"
4848
text-diff = "0.4"

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2025-03-03"
2+
channel = "nightly-2025-06-01"
33
components = ["rust-src", "rustc-dev", "rustfmt", "clippy", "rust-analyzer"]
44
profile = "minimal"

0 commit comments

Comments
 (0)