From ecd025346c9174bfe34c4e7b4db8d716357e55b6 Mon Sep 17 00:00:00 2001 From: KD Date: Sun, 12 Oct 2025 17:06:57 -0400 Subject: [PATCH] tsk-70: Rust update (#74) * Updated rust in workflow * Updated rust in cargo * icarus_models version bump * Version bump * Workflow changes --- .github/workflows/rust-ubuntu-latest.yml | 8 ++++---- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/rust-ubuntu-latest.yml b/.github/workflows/rust-ubuntu-latest.yml index 3a200b9..dc34b51 100644 --- a/.github/workflows/rust-ubuntu-latest.yml +++ b/.github/workflows/rust-ubuntu-latest.yml @@ -2,9 +2,9 @@ name: Rust on: push: - branches: [ "master" ] + branches: [ "main" ] pull_request: - branches: [ "master", "icarus_v2_support" ] + branches: [ "main" ] env: CARGO_TERM_COLOR: always @@ -15,9 +15,9 @@ jobs: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Rust version - run: rustup install 1.88.0 && rustup default 1.88.0 + run: rustup install 1.90.0 && rustup default 1.90.0 - name: Debug secret run: echo "${{ secrets.MYREPO_TOKEN }}" | head -c 10 ; echo "..." diff --git a/Cargo.lock b/Cargo.lock index 98294ba..8de528f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -481,7 +481,7 @@ dependencies = [ [[package]] name = "icarus-dm" -version = "0.7.2" +version = "0.8.0" dependencies = [ "futures", "http", @@ -496,8 +496,8 @@ dependencies = [ [[package]] name = "icarus_models" -version = "0.6.6" -source = "git+ssh://git@git.kundeng.us/phoenix/icarus_models.git?tag=v0.6.6-65-eac7562b80-111#eac7562b80b9f82d21ab737d1e84ba4f12e472dd" +version = "0.7.0" +source = "git+ssh://git@git.kundeng.us/phoenix/icarus_models.git?tag=v0.7.0-70-f0a716b243-111#f0a716b243fa868b7d03abe690297e4e95db7e12" dependencies = [ "josekit", "rand", diff --git a/Cargo.toml b/Cargo.toml index 7353bd0..2773bce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "icarus-dm" -version = "0.7.2" -rust-version = "1.88" +version = "0.8.0" +rust-version = "1.90" edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -14,4 +14,4 @@ serde_json = "1.0.145" tokio = { version = "1.47.1", features = ["full"] } tokio-util = { version = "0.7.16", features = ["codec"] } uuid = { version = "1.18.1", features = ["v4", "serde"] } -icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.6.6-65-eac7562b80-111" } +icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.7.0-70-f0a716b243-111" }