From 0b4c7e1b3c4b1b7666d53974d013cb9c7ffa780a Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 12 Oct 2025 16:59:53 -0400 Subject: [PATCH 1/5] Updated rust in workflow --- .github/workflows/rust-ubuntu-latest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-ubuntu-latest.yml b/.github/workflows/rust-ubuntu-latest.yml index 3a200b9..8c99a9c 100644 --- a/.github/workflows/rust-ubuntu-latest.yml +++ b/.github/workflows/rust-ubuntu-latest.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v4 - 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 "..." -- 2.47.3 From 0c36217322ffc1d581e8def3421b734b988f2c2f Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 12 Oct 2025 17:00:02 -0400 Subject: [PATCH 2/5] Updated rust in cargo --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7353bd0..7da3003 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "icarus-dm" version = "0.7.2" -rust-version = "1.88" +rust-version = "1.90" edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -- 2.47.3 From adb95e81399bf316024fea7dc29912ec252d0556 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 12 Oct 2025 17:01:31 -0400 Subject: [PATCH 3/5] icarus_models version bump --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 98294ba..32f6a21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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 7da3003..c18a5e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } -- 2.47.3 From e0c97da75cae54ce01f2733dc63867ad5dee800d Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 12 Oct 2025 17:02:17 -0400 Subject: [PATCH 4/5] Version bump --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 32f6a21..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", diff --git a/Cargo.toml b/Cargo.toml index c18a5e4..2773bce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icarus-dm" -version = "0.7.2" +version = "0.8.0" rust-version = "1.90" edition = "2024" -- 2.47.3 From c39ec25cfd4c968c7ba3427617c3ec572825c2be Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 12 Oct 2025 17:03:02 -0400 Subject: [PATCH 5/5] Workflow changes --- .github/workflows/rust-ubuntu-latest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust-ubuntu-latest.yml b/.github/workflows/rust-ubuntu-latest.yml index 8c99a9c..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,7 +15,7 @@ jobs: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Rust version run: rustup install 1.90.0 && rustup default 1.90.0 -- 2.47.3