Compare commits

...

5 Commits

Author SHA1 Message Date
phoenix 4b42a435fe Cargo.toml time bump 2026-05-03 17:29:38 -04:00
phoenix df51ec975b Cargo.toml uuid bump 2026-05-03 17:28:36 -04:00
phoenix c92f8bd2eb tempfile bump 2026-05-03 17:23:43 -04:00
phoenix 2992a6e87f Cargo.toml rust bump 2026-05-03 17:22:25 -04:00
phoenix fb0d6e49ca Workflow rust bump 2026-05-03 17:22:10 -04:00
4 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.94
toolchain: 1.95
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.94
toolchain: 1.95
- run: cargo check
test:
@@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.94
toolchain: 1.95
- run: cargo test
fmt:
@@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.94
toolchain: 1.95
- 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.94
toolchain: 1.95
- 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.94
toolchain: 1.95
- run: cargo build
Generated
+2 -2
View File
@@ -649,9 +649,9 @@ dependencies = [
[[package]]
name = "uuid"
version = "1.22.0"
version = "1.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
dependencies = [
"getrandom 0.4.2",
"js-sys",
+4 -4
View File
@@ -2,7 +2,7 @@
name = "icarus_models"
version = "0.10.0"
edition = "2024"
rust-version = "1.94"
rust-version = "1.95"
description = "models used for the icarus project"
license = "MIT"
@@ -10,10 +10,10 @@ license = "MIT"
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.18.1", features = ["v4", "serde"] }
time = { version = "0.3.47", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.23.1", features = ["v4", "serde"] }
josekit = { version = "0.10.3" }
utoipa = { version = "5.4.0", features = ["uuid", "time"] }
[dev-dependencies]
tempfile = { version = "3.23.0" }
tempfile = { version = "3.27.0" }