diff --git a/Cargo.lock b/Cargo.lock index 6ead1f33888..4cb24b08424 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4655,9 +4655,9 @@ dependencies = [ [[package]] name = "proto_core" -version = "0.23.2" +version = "0.23.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44b64578ff10a1a39d3a3d94e0725c0ecdc5858ec6c42844289530dd15981b22" +checksum = "0f7dbc476e051d23cfac2b1f284ffa8943d45dffe40113dcdf113667b3dd8b79" dependencies = [ "cached", "extism", @@ -4676,6 +4676,7 @@ dependencies = [ "starbase_events", "starbase_styles", "starbase_utils", + "system_env", "thiserror", "tinytemplate", "tracing", @@ -5714,12 +5715,13 @@ dependencies = [ [[package]] name = "system_env" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5430c2b1d8315d22edaebbd40617f9110ccfd95e95684802d0d17907f44966" +checksum = "63476c953552c18056a153eaabc04d2987bc64f07633acc80d6a65a8574f1a3b" dependencies = [ "serde", "serde_json", + "shell-words", "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 3a968f1571b..124c78a1df1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ pathdiff = "0.2.1" petgraph = { version = "0.6.4", default-features = false, features = [ "serde-1", ] } -proto_core = "0.23.2" +proto_core = "0.23.3" relative-path = { version = "1.9.0", features = ["serde"] } regex = "1.10.2" reqwest = { version = "0.11.22", default-features = false, features = [ diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index d90d813f296..db52705d838 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -10,6 +10,16 @@ - More accurately monitors signals (ctrl+c) and shutdowns. - Tasks can now be configured with a timeout. +## Unreleased + +#### 🐞 Fixes + +- Fixed an issue where we would fail to find Cargo binaries on Windows. + +#### ⚙️ Internal + +- Updated proto to v0.23.3. + ## 1.17.2 #### 🐞 Fixes