From 56089ffa3e103dac8b2448d65efa3f482a8f69dd Mon Sep 17 00:00:00 2001 From: Kayos Date: Sun, 24 May 2026 17:28:38 -0700 Subject: [PATCH] Rename package to strawcore-core Straw's wrapper crate already owns the name 'strawcore' (and that name is baked into the Android .so file + Kotlin's System.loadLibrary call). Renaming this extractor crate to 'strawcore-core' resolves the cargo package-name collision so both can live in the same workspace dep tree. Repo name on Gitea stays Sulkta-Coop/strawcore. --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 02caacc..81861df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -985,7 +985,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] -name = "strawcore" +name = "strawcore-core" version = "0.1.0" dependencies = [ "once_cell", diff --git a/Cargo.toml b/Cargo.toml index 21161dd..477bf40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "strawcore" +name = "strawcore-core" version = "0.1.0" edition = "2021" license = "GPL-3.0-or-later"