Compare commits

..

4 Commits

Author SHA1 Message Date
phoenix 9955c22468 workflow syntax fix 2026-03-22 22:07:41 -04:00
phoenix c6682ae69a Fixing tag release workflow 2026-03-22 22:05:49 -04:00
phoenix 0e86fb0cef cargo update 2026-03-22 22:01:36 -04:00
phoenix 368590c3a2 Updated rust version in workflow 2026-03-22 21:59:34 -04:00
4 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.95
toolchain: 1.94
components: cargo
- name: Extract Version from Cargo.toml
+5 -5
View File
@@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.95
toolchain: 1.94
- run: cargo check
test:
@@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.95
toolchain: 1.94
- run: cargo test
fmt:
@@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.95
toolchain: 1.94
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
@@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.95
toolchain: 1.94
- run: rustup component add clippy
- run: cargo clippy -- -D warnings
@@ -58,5 +58,5 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.95
toolchain: 1.94
- run: cargo build
Generated
+3 -3
View File
@@ -183,7 +183,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "icarus_models"
version = "0.10.0"
version = "0.9.2"
dependencies = [
"josekit",
"rand",
@@ -649,9 +649,9 @@ dependencies = [
[[package]]
name = "uuid"
version = "1.23.1"
version = "1.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
dependencies = [
"getrandom 0.4.2",
"js-sys",
+4 -4
View File
@@ -1,8 +1,8 @@
[package]
name = "icarus_models"
version = "0.10.0"
version = "0.9.2"
edition = "2024"
rust-version = "1.95"
rust-version = "1.90"
description = "models used for the icarus project"
license = "MIT"
@@ -11,9 +11,9 @@ serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.145" }
rand = { version = "0.9.2" }
time = { version = "0.3.44", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.23.1", features = ["v4", "serde"] }
uuid = { version = "1.18.1", features = ["v4", "serde"] }
josekit = { version = "0.10.3" }
utoipa = { version = "5.4.0", features = ["uuid", "time"] }
[dev-dependencies]
tempfile = { version = "3.27.0" }
tempfile = { version = "3.23.0" }