From b6909958064b1a3a4bffd6cbc0f6e12b95477e68 Mon Sep 17 00:00:00 2001 From: phoenix Date: Tue, 14 Jul 2026 17:09:14 -0400 Subject: [PATCH] Name change (#2) Reviewed-on: http://git.kundeng.us/phoenix/simeta/pulls/2 --- .gitea/workflows/tag_release.yml | 2 +- .gitea/workflows/workflow.yml | 12 ++++++------ Cargo.lock | 30 +++++++++++++++--------------- Cargo.toml | 2 +- LICENSE.md | 22 ++++++++++++++++++++++ README.md | 3 ++- 6 files changed, 47 insertions(+), 24 deletions(-) create mode 100644 LICENSE.md diff --git a/.gitea/workflows/tag_release.yml b/.gitea/workflows/tag_release.yml index 9b2c0e6..9432759 100644 --- a/.gitea/workflows/tag_release.yml +++ b/.gitea/workflows/tag_release.yml @@ -21,7 +21,7 @@ jobs: uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: Swatinem/rust-cache@v2 with: - toolchain: 1.96.1 + toolchain: 1.97 components: cargo - name: Extract Version from Cargo.toml diff --git a/.gitea/workflows/workflow.yml b/.gitea/workflows/workflow.yml index 24094a4..ca9e3d5 100644 --- a/.gitea/workflows/workflow.yml +++ b/.gitea/workflows/workflow.yml @@ -1,4 +1,4 @@ -name: Rust Build +name: simeta Build on: push: @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.96.1 + toolchain: 1.97 - uses: Swatinem/rust-cache@v2 - run: | mkdir -p ~/.ssh @@ -35,7 +35,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.96.1 + toolchain: 1.97 - uses: Swatinem/rust-cache@v2 - run: | mkdir -p ~/.ssh @@ -54,7 +54,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.96.1 + toolchain: 1.97 - run: rustup component add rustfmt - uses: Swatinem/rust-cache@v2 - run: | @@ -74,7 +74,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.96.1 + toolchain: 1.97 - uses: Swatinem/rust-cache@v2 - run: rustup component add clippy - run: | @@ -94,7 +94,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.96.1 + toolchain: 1.97 - uses: Swatinem/rust-cache@v2 - run: | mkdir -p ~/.ssh diff --git a/Cargo.lock b/Cargo.lock index d4b1622..1037ca1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -146,17 +146,6 @@ dependencies = [ "rand_core", ] -[[package]] -name = "icarus_meta" -version = "0.6.1" -dependencies = [ - "imghdr", - "infer", - "lofty", - "rand", - "tempfile", -] - [[package]] name = "imghdr" version = "0.7.0" @@ -326,9 +315,20 @@ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" [[package]] name = "simd-adler32" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" +checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea" + +[[package]] +name = "simeta" +version = "0.6.1" +dependencies = [ + "imghdr", + "infer", + "lofty", + "rand", + "tempfile", +] [[package]] name = "slab" @@ -368,9 +368,9 @@ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" [[package]] name = "uuid" -version = "1.23.4" +version = "1.23.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf80a72845275afea99e7f2b434723d3bc7e38470fcd1c7ed39a599c73319a53" +checksum = "ea5fab0d6c3c01ae70085a09cb03d4c7a1d6314e2b3e075392783396d724ca0a" dependencies = [ "js-sys", "wasm-bindgen", diff --git a/Cargo.toml b/Cargo.toml index ecfabac..41323e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "icarus_meta" +name = "simeta" version = "0.6.1" edition = "2024" rust-version = "1.95" diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..1ba694a --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,22 @@ +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. diff --git a/README.md b/README.md index c50b599..f117cf4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -Library to manage metadata of flac files, used in various icarus-related software +# simeta +Library to manage metadata of flac files, used in various soaricarus-related software projects.