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:
parent
2a1866112c
commit
27e6c07fb3
2
apps/tauri/src-tauri/Cargo.lock
generated
2
apps/tauri/src-tauri/Cargo.lock
generated
|
|
@ -2398,7 +2398,7 @@ dependencies = [
|
|||
]
|
||||
|
||||
[[package]]
|
||||
name = "onyx-tauri"
|
||||
name = "onyx-tasks"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
|
|
|
|||
|
|
@ -1,13 +1,17 @@
|
|||
[package]
|
||||
name = "onyx-tauri"
|
||||
name = "onyx-tasks"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "Tauri v2 desktop GUI for Onyx"
|
||||
license = "GPL-3.0-or-later"
|
||||
repository = "https://github.com/SteelDynamite/onyx"
|
||||
|
||||
[[bin]]
|
||||
name = "onyx-standalone"
|
||||
path = "src/main.rs"
|
||||
|
||||
[lib]
|
||||
name = "onyx_tauri_lib"
|
||||
name = "onyx_tasks_lib"
|
||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
|
||||
[build-dependencies]
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@
|
|||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||
|
||||
fn main() {
|
||||
onyx_tauri_lib::run()
|
||||
onyx_tasks_lib::run()
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue