Skip to content

Commit 7dd838b

Browse files
committed
Second pass.
1 parent 0be509b commit 7dd838b

16 files changed

Lines changed: 93 additions & 79 deletions

File tree

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
with:
137137
auto-install: true
138138
cache: true
139-
proto-version: '0.58.2' # Keep in sync
139+
proto-version: '0.59.0' # Keep in sync
140140
env:
141141
PROTO_LOG: trace
142142
- uses: mozilla-actions/sccache-action@v0.0.9

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
#### ⚙️ Internal
6+
7+
- Updated proto to [v0.59.0](https://github.com/moonrepo/proto/releases/tag/v0.59.0) from 0.58.2.
8+
- Updated dependencies.
9+
310
## 2.4.5
411

512
#### 🐞 Fixes

Cargo.lock

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

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ exclude = ["tests/fixtures", "wasm/test-plugin"]
55
default-members = ["crates/cli"]
66

77
[workspace.dependencies]
8-
ai_env = "0.1.1"
8+
ai_env = "0.1.3"
99
async-recursion = "1.1.1"
1010
async-stream = "0.3.6"
1111
blake3 = { version = "1.8.5", features = ["mmap"] }
1212
bazel-remote-apis = { version = "0.27.0", features = ["serde"] }
13-
bytes = "1.12.0"
14-
async-trait = "0.1.89"
13+
bytes = "1.12.1"
14+
async-trait = "0.1.91"
1515
chrono = { version = "0.4.44", features = ["serde"] }
16-
cd_env = "0.4.1"
17-
ci_env = "0.5.1"
18-
clap = { version = "4.6.1", default-features = false, features = [
16+
cd_env = "0.4.2"
17+
ci_env = "0.5.2"
18+
clap = { version = "4.6.4", default-features = false, features = [
1919
"derive",
2020
"std",
2121
"error-context",
@@ -30,20 +30,20 @@ criterion = { package = "codspeed-criterion-compat", version = "5.0.1", default-
3030
] }
3131
daggy = { version = "0.9.0", features = ["serde-1"] }
3232
dirs = "6.0.0"
33-
futures = "0.3.31"
33+
futures = "0.3.33"
3434
httpmock = "0.8.3"
3535
indexmap = "2.13.0"
3636
iocraft = "0.8.3"
37-
libc = "0.2.186"
38-
md5 = "0.8.0"
37+
libc = "0.2.189"
38+
md5 = "0.8.1"
3939
miette = "7.6.0"
4040
num_cpus = "1.17.0"
4141
pathdiff = "0.2.3"
4242
petgraph = { version = "0.8.3", default-features = false, features = [
4343
"serde-1",
4444
] }
4545
relative-path = { version = "2.0.1" }
46-
regex = { version = "1.12.3", default-features = false, features = [
46+
regex = { version = "1.13.1", default-features = false, features = [
4747
"std",
4848
"perf",
4949
] }
@@ -62,7 +62,7 @@ serial_test = "3.4.0"
6262
serde = { version = "1.0.228", features = ["derive"] }
6363
serde_json = "1.0.150"
6464
sha2 = "0.11.0"
65-
starbase = { version = "0.12.3", features = ["clap", "miette"] }
65+
starbase = { version = "0.13.1", features = ["clap", "miette"] }
6666
starbase_archive = { version = "0.14.4", default-features = false, features = [
6767
"miette",
6868
"tar-all",
@@ -80,7 +80,7 @@ starbase_utils = { version = "0.14.1", default-features = false, features = [
8080
"miette",
8181
] }
8282
tera = { version = "1.20.1", features = ["preserve_order"] }
83-
thiserror = "2.0.18"
83+
thiserror = "2.0.19"
8484
tokio = { version = "1.52.3", default-features = false, features = [
8585
"macros",
8686
"process",
@@ -91,13 +91,13 @@ tokio = { version = "1.52.3", default-features = false, features = [
9191
"time",
9292
"tracing",
9393
] }
94-
tokio-util = "0.7.18"
94+
tokio-util = "0.7.19"
9595
tonic = { version = "0.14.6", default-features = false }
9696
tonic-prost = "0.14.6"
9797
tower = "0.5.3"
9898
tracing = "0.1.44"
9999
url = "2.5.8"
100-
uuid = { version = "1.23.4", features = ["v4"] }
100+
uuid = { version = "1.24.0", features = ["v4"] }
101101
windows-sys = { version = "0.61.2", default-features = false }
102102

103103
# proto/plugin related

0 commit comments

Comments
 (0)