fix: rename app and lib

This commit is contained in:
Arduinum
2026-03-12 20:21:50 +03:00
committed by Arduinum628
parent 4d2bb6597a
commit 1716306e86
3 changed files with 16 additions and 16 deletions

View File

@@ -81,19 +81,6 @@ version = "1.0.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
[[package]]
name = "app"
version = "0.1.0"
dependencies = [
"log",
"serde",
"serde_json",
"tauri",
"tauri-build",
"tauri-plugin-log",
"tauri-plugin-sql",
]
[[package]]
name = "arrayvec"
version = "0.7.6"
@@ -1849,6 +1836,19 @@ dependencies = [
"serde_json",
]
[[package]]
name = "kawai-focus"
version = "0.1.0"
dependencies = [
"log",
"serde",
"serde_json",
"tauri",
"tauri-build",
"tauri-plugin-log",
"tauri-plugin-sql",
]
[[package]]
name = "keyboard-types"
version = "0.7.0"

View File

@@ -1,5 +1,5 @@
[package]
name = "app"
name = "kawai-focus"
version = "0.1.0"
description = "Kawai-Focus - приложение для фокусировки внимания на основе таймера Pomodoro."
authors = ["Arduinum"]
@@ -11,7 +11,7 @@ rust-version = "1.77.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "app_lib"
name = "kawai_focus"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]

View File

@@ -3,5 +3,5 @@
fn main() {
println!("Запуск приложения Tauri...");
app_lib::run();
kawai_focus::run();
}