refactor: rename onyx-tauri to onyx-tasks, add onyx-standalone binary

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Tristan Michael 2026-04-03 03:48:25 -07:00
parent 2a1866112c
commit 27e6c07fb3
3 changed files with 8 additions and 4 deletions

View file

@ -2398,7 +2398,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "onyx-tauri" name = "onyx-tasks"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"chrono", "chrono",

View file

@ -1,13 +1,17 @@
[package] [package]
name = "onyx-tauri" name = "onyx-tasks"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
description = "Tauri v2 desktop GUI for Onyx" description = "Tauri v2 desktop GUI for Onyx"
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"
repository = "https://github.com/SteelDynamite/onyx" repository = "https://github.com/SteelDynamite/onyx"
[[bin]]
name = "onyx-standalone"
path = "src/main.rs"
[lib] [lib]
name = "onyx_tauri_lib" name = "onyx_tasks_lib"
crate-type = ["staticlib", "cdylib", "rlib"] crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies] [build-dependencies]

View file

@ -2,5 +2,5 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() { fn main() {
onyx_tauri_lib::run() onyx_tasks_lib::run()
} }