Compare commits

..
Author SHA1 Message Date
phoenix a37bb4acc0 Maybe this is it?
Rust Build / Check (pull_request) Successful in 30s
Release Tagging / release (pull_request) Successful in 1m1s
Rust Build / Rustfmt (pull_request) Successful in 27s
Rust Build / Test Suite (pull_request) Successful in 1m0s
Rust Build / Clippy (pull_request) Successful in 56s
Rust Build / build (pull_request) Successful in 57s
2026-07-07 16:51:27 -04:00
phoenix cce18613a1 Fixing workflow
Release Tagging / release (pull_request) Failing after 0s
Rust Build / Test Suite (pull_request) Successful in 46s
Rust Build / Check (pull_request) Successful in 44s
Rust Build / Clippy (pull_request) Successful in 1m0s
Rust Build / Rustfmt (pull_request) Successful in 1m7s
Rust Build / build (pull_request) Successful in 34s
2026-07-07 16:46:16 -04:00
phoenix c375424e5b bump: icarus_meta
Rust Build / Check (pull_request) Successful in 1m29s
Rust Build / Clippy (pull_request) Successful in 53s
Rust Build / Test Suite (pull_request) Successful in 1m10s
Rust Build / Rustfmt (pull_request) Successful in 1m11s
Rust Build / build (pull_request) Successful in 1m0s
2026-07-07 16:44:47 -04:00
phoenix c72c52c906 cargo update 2026-07-07 16:44:24 -04:00
phoenix eff85fb189 bump: rand 2026-07-07 16:44:06 -04:00
phoenix 3e802cd011 Updating workflow 2026-07-07 16:42:41 -04:00
6 changed files with 24 additions and 47 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ jobs:
uses: actions-rust-lang/setup-rust-toolchain@v1 uses: actions-rust-lang/setup-rust-toolchain@v1
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
with: with:
toolchain: 1.97 toolchain: 1.96.1
components: cargo components: cargo
- name: Extract Version from Cargo.toml - name: Extract Version from Cargo.toml
+6 -6
View File
@@ -1,4 +1,4 @@
name: simeta Build name: Rust Build
on: on:
push: push:
@@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: actions-rust-lang/setup-rust-toolchain@v1
with: with:
toolchain: 1.97 toolchain: 1.96.1
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- run: | - run: |
mkdir -p ~/.ssh mkdir -p ~/.ssh
@@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: actions-rust-lang/setup-rust-toolchain@v1
with: with:
toolchain: 1.97 toolchain: 1.96.1
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- run: | - run: |
mkdir -p ~/.ssh mkdir -p ~/.ssh
@@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: actions-rust-lang/setup-rust-toolchain@v1
with: with:
toolchain: 1.97 toolchain: 1.96.1
- run: rustup component add rustfmt - run: rustup component add rustfmt
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- run: | - run: |
@@ -74,7 +74,7 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: actions-rust-lang/setup-rust-toolchain@v1
with: with:
toolchain: 1.97 toolchain: 1.96.1
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- run: rustup component add clippy - run: rustup component add clippy
- run: | - run: |
@@ -94,7 +94,7 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: actions-rust-lang/setup-rust-toolchain@v1
with: with:
toolchain: 1.97 toolchain: 1.96.1
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- run: | - run: |
mkdir -p ~/.ssh mkdir -p ~/.ssh
Generated
+15 -15
View File
@@ -146,6 +146,17 @@ dependencies = [
"rand_core", "rand_core",
] ]
[[package]]
name = "icarus_meta"
version = "0.6.1"
dependencies = [
"imghdr",
"infer",
"lofty",
"rand",
"tempfile",
]
[[package]] [[package]]
name = "imghdr" name = "imghdr"
version = "0.7.0" version = "0.7.0"
@@ -315,20 +326,9 @@ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
[[package]] [[package]]
name = "simd-adler32" name = "simd-adler32"
version = "0.3.10" version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea" checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
[[package]]
name = "simeta"
version = "0.6.1"
dependencies = [
"imghdr",
"infer",
"lofty",
"rand",
"tempfile",
]
[[package]] [[package]]
name = "slab" name = "slab"
@@ -368,9 +368,9 @@ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
[[package]] [[package]]
name = "uuid" name = "uuid"
version = "1.23.5" version = "1.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea5fab0d6c3c01ae70085a09cb03d4c7a1d6314e2b3e075392783396d724ca0a" checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53"
dependencies = [ dependencies = [
"js-sys", "js-sys",
"wasm-bindgen", "wasm-bindgen",
+1 -1
View File
@@ -1,5 +1,5 @@
[package] [package]
name = "simeta" name = "icarus_meta"
version = "0.6.1" version = "0.6.1"
edition = "2024" edition = "2024"
rust-version = "1.95" rust-version = "1.95"
-22
View File
@@ -1,22 +0,0 @@
Copyright (c) 2026 Kun Deng.
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
+1 -2
View File
@@ -1,3 +1,2 @@
# simeta Library to manage metadata of flac files, used in various icarus-related software
Library to manage metadata of flac files, used in various soaricarus-related software
projects. projects.