Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/ci-path-filters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,13 @@ rust:
- 'Cargo.toml'
- 'crates/**/Cargo.toml'
- 'crates/**/*.rs'
# The embedded pi extension is `.ts`/`.json` under the CLI crate. Changes must run
# The managed pi extension is `.ts`/`.json` under the CLI daemon tree. Changes must run
# the Rust tests that verify the embedded asset inventory and package contents.
- 'crates/cli/assets/**'
- 'crates/cli/src/daemon/managed/pi_extension/**'
- 'crates/worker-proto/proto/**'
- 'crates/ffi/cbindgen.toml'
- 'integrations/coding-agents/**'
- 'scripts/latency_benchmark/daemon_transport/**'

go:
- 'crates/ffi/Cargo.toml'
Expand Down Expand Up @@ -211,6 +212,8 @@ pi:
# suite and symlinks the rest, so an edit to the extension itself lands here and would
# otherwise never reach the suite that tests it.
- 'crates/cli/assets/pi-extension/**'
- 'crates/cli/src/daemon/managed/pi_extension/**'
- 'crates/cli/tests/managed_pi_extension_tests.mjs'
- 'integrations/pi/**'

python:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,11 @@ jobs:
fi
just "${args[@]}" test-rust

- name: Run daemon transport benchmark smoke check
if: ${{ matrix.platform == 'linux-amd64' }}
working-directory: ${{ env.NEMO_RELAY_CI_WORKSPACE }}
run: just daemon-transport-benchmark-smoke

- name: Upload Rust coverage to Codecov
if: ${{ matrix.platform != 'windows-arm64' }}
uses: codecov/codecov-action@e53489f4d376d79066609109e7a95a29eb3740b1 # v7.0.0
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# Rust
/target
/scripts/latency_benchmark/daemon_transport/target

# Python
/.venv
Expand Down
4 changes: 2 additions & 2 deletions ATTRIBUTIONS-Rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -18304,7 +18304,7 @@ See the License for the specific language governing permissions and
limitations under the License.
```

## h2 - 0.4.16
## h2 - 0.4.19
**Repository URL**: https://github.com/hyperium/h2
**License Type(s)**: MIT
### License: https://spdx.org/licenses/MIT.html
Expand Down Expand Up @@ -20273,7 +20273,7 @@ See the License for the specific language governing permissions and
limitations under the License.
```

## hyper - 1.9.0
## hyper - 1.11.1
**Repository URL**: https://github.com/hyperium/hyper
**License Type(s)**: MIT
### License: https://spdx.org/licenses/MIT.html
Expand Down
19 changes: 10 additions & 9 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ coverage:
if_ci_failed: error
patch:
default:
target: 90%
target: 75%
threshold: 5%
base: auto
if_ci_failed: error
Expand Down Expand Up @@ -69,7 +69,7 @@ component_management:
- "crates/cli/src"
statuses:
- type: project
target: 90%
target: 85%
threshold: 0.5%
base: auto
if_ci_failed: error
Expand All @@ -80,7 +80,7 @@ component_management:
- "crates/ffi/src"
statuses:
- type: project
target: 95%
target: auto
threshold: 0.5%
base: auto
if_ci_failed: error
Expand Down
5 changes: 3 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ futures-util = "0.3"
fs2 = "0.4"
http = "1"
http-body-util = "0.1"
hyper = "1"
hyper-util = { version = "0.1", features = ["tokio"] }
hyper = { version = "1.11.1", features = ["client", "server", "http1", "http2"] }
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "native-tokio", "ring", "tls12"] }
hyper-util = { version = "0.1", features = ["client-legacy", "http1", "http2", "server-auto", "service", "tokio"] }
dialoguer = { version = "0.11", default-features = false, features = ["password"] }
jsonschema = { version = "0.46.6", default-features = false }
listeners = "0.4"
Expand Down
Loading
Loading