Skip to content

Commit 223855c

Browse files
committed
Revert "build: Upgrade to Rust v1.80. (#562)"
This reverts commit d51ca0f.
1 parent 675d634 commit 223855c

17 files changed

Lines changed: 267 additions & 148 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
## Plugin changelogs
44

5-
- [Bun](https://github.com/moonrepo/tools/blob/master/tools/bun/CHANGELOG.md)
6-
- [Deno](https://github.com/moonrepo/tools/blob/master/tools/deno/CHANGELOG.md)
7-
- [Go](https://github.com/moonrepo/tools/blob/master/tools/go/CHANGELOG.md)
8-
- [Node](https://github.com/moonrepo/tools/blob/master/tools/node/CHANGELOG.md)
9-
- [Python](https://github.com/moonrepo/tools/blob/master/tools/python/CHANGELOG.md)
10-
- [Rust](https://github.com/moonrepo/tools/blob/master/tools/rust/CHANGELOG.md)
11-
- [TOML schema](https://github.com/moonrepo/tools/blob/master/tools/internal-schema/CHANGELOG.md)
5+
- [Bun](https://github.com/moonrepo/bun-plugin/blob/master/CHANGELOG.md)
6+
- [Deno](https://github.com/moonrepo/deno-plugin/blob/master/CHANGELOG.md)
7+
- [Go](https://github.com/moonrepo/go-plugin/blob/master/CHANGELOG.md)
8+
- [Node](https://github.com/moonrepo/node-plugin/blob/master/CHANGELOG.md)
9+
- [Python](https://github.com/moonrepo/python-plugin/blob/master/CHANGELOG.md)
10+
- [Rust](https://github.com/moonrepo/rust-plugin/blob/master/CHANGELOG.md)
11+
- [TOML schema](https://github.com/moonrepo/schema-plugin/blob/master/CHANGELOG.md)
1212

1313
## Unreleased
1414

@@ -42,17 +42,6 @@
4242
proto = "0.38.0"
4343
```
4444

45-
#### 🧩 Plugins
46-
47-
- Updated `go_plugin` to v0.12.
48-
- Changed the `gobin` setting to `false` by default.
49-
- Updated `node_depman_plugin` to v0.12.
50-
- Added a `dist-url` config setting, allowing the download host to be customized.
51-
52-
#### ⚙️ Internal
53-
54-
- Updated Rust to v1.80.
55-
5645
## 0.38.4
5746

5847
#### 🐞 Fixes

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ default-members = ["crates/cli"]
66
[workspace.dependencies]
77
anyhow = "1.0.86"
88
async-trait = "0.1.81"
9-
clap = "4.5.11"
10-
clap_complete = "4.5.11"
9+
clap = "4.5.10"
10+
clap_complete = "4.5.9"
1111
dirs = "5.0.1"
1212
extism = "1.0.0" # Lower for consumers
1313
extism-pdk = "1.2.0"
1414
human-sort = "0.2.2"
1515
indexmap = "2.2.6"
1616
miette = "7.2.0"
17+
once_cell = "1.19.0"
1718
once_map = "0.4.18"
1819
regex = { version = "1.10.5", default-features = false, features = ["std"] }
1920
reqwest = { version = "0.12.5", default-features = false, features = [

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async-trait = { workspace = true }
4242
chrono = "0.4.38"
4343
clap = { workspace = true, features = ["derive", "env"] }
4444
clap_complete = { workspace = true }
45-
clap_complete_nushell = "4.5.3"
45+
clap_complete_nushell = "4.5.2"
4646
comfy-table = "7.1.1"
4747
dialoguer = "0.11.0"
4848
dirs = { workspace = true }

crates/core/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ warpgate = { version = "0.16.0", path = "../warpgate", features = [
1919
indexmap = { workspace = true }
2020
miette = { workspace = true }
2121
minisign-verify = "0.2.1"
22+
once_cell = { workspace = true }
2223
regex = { workspace = true }
2324
reqwest = { workspace = true }
2425
rustc-hash = { workspace = true }
@@ -36,6 +37,7 @@ serde_json = { workspace = true }
3637
sha2 = { workspace = true }
3738
shell-words = { workspace = true }
3839
starbase_archive = { workspace = true }
40+
starbase_events = { workspace = true }
3941
starbase_styles = { workspace = true }
4042
starbase_utils = { workspace = true, features = ["fs-lock"] }
4143
thiserror = { workspace = true }

0 commit comments

Comments
 (0)