mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00

* feat: add drizzle orm * feat: update drizzle configuration and schema management - Added a check for DB_FILE_NAME in drizzle.config.ts to ensure it's set. - Updated package.json to change the package name to @kksh/drizzle and added exports for schema and relations. - Enhanced README.md with instructions for using the schema generation. - Refactored schema.ts for improved readability and organization of imports. * add tauri-plugin-sql * feat: add database select and execute commands - Introduced `select` and `execute` functions in the database module to facilitate querying and executing SQL commands. - Updated the Tauri plugin to expose these commands, allowing for database interactions from the frontend. - Added corresponding permissions for the new commands in the permissions configuration. - Enhanced the database library with JSON value handling for query parameters. * fix: sqlite select command * drizzle ORM verified working * refactor: clean up database module by removing unused SelectQueryResult type and disabling eslint for explicit any usage * pnpm lock update * Update enum definition for type safety - Changed enum to use 'as const' for better type inference - Ensured more robust handling of extension publish sources * reimplemented most db command functions with ORM (migrate from tauri command invoke * fixed searchExtensionData orm function * Refactor ORM commands and searchExtensionData function for improved readability and consistency - Reformatted import statements for better organization. - Cleaned up whitespace and indentation in searchExtensionData function. - Enhanced readability of SQL conditions and query building logic. - Disabled eslint for explicit any usage in the troubleshooters page. * Fix test assertions in database module to use array indexing for results format rust code * update deno lock * move drizzle from desktop to drizzle package * update pnpm version and lock * refactor: migrate db tauri commands to drizzle * refactor: remove unused extension and command CRUD operations from db module
76 lines
2.3 KiB
TOML
76 lines
2.3 KiB
TOML
[package]
|
|
name = "kunkun"
|
|
version = "0.0.0"
|
|
description = "Kunkun Desktop App"
|
|
authors = ["Huakun"]
|
|
edition = "2021"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "kunkun_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.5", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.2.5", features = [
|
|
"macos-private-api",
|
|
"image-png",
|
|
"image-ico",
|
|
"tray-icon",
|
|
"devtools",
|
|
] }
|
|
tauri-plugin-shell = "2.2.0"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true }
|
|
mdns-sd = { workspace = true }
|
|
chrono = { workspace = true }
|
|
log = { workspace = true }
|
|
urlencoding = "2.1.3"
|
|
tauri-plugin-process = "2.2.0"
|
|
tauri-plugin-shellx = { workspace = true }
|
|
tauri-plugin-fs = { version = "2.2.0", features = ["watch"] }
|
|
tauri-plugin-dialog = "2.2.0"
|
|
tauri-plugin-notification = "2.2.1"
|
|
tauri-plugin-os = "2.2.0"
|
|
tauri-plugin-http = "2.3.0"
|
|
tauri-plugin-upload = { workspace = true }
|
|
# tauri-plugin-upload = "2.2.1"
|
|
tauri-plugin-jarvis = { workspace = true }
|
|
tauri-plugin-keyring = { workspace = true }
|
|
tauri-plugin-network = { workspace = true }
|
|
tauri-plugin-system-info = { workspace = true }
|
|
tauri-plugin-user-input = { workspace = true }
|
|
tauri-plugin-clipboard = { workspace = true }
|
|
tauri-plugin-store = "2.2.0"
|
|
tauri-plugin-deep-link = "2.2.0"
|
|
tauri-plugin-log = { version = "2.2.1", features = ["colored"] }
|
|
crypto = { workspace = true }
|
|
zip = "2.2.2"
|
|
uuid = "1.14.0"
|
|
# tauri-plugin-devtools = "2.0.0"
|
|
obfstr = { workspace = true }
|
|
base64 = { workspace = true }
|
|
tauri-plugin-stronghold = "2.2.0"
|
|
tauri-plugin-sql = "2"
|
|
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
cocoa = "0.24.1"
|
|
mac-security-rs = { workspace = true }
|
|
objc = "0.2.7"
|
|
|
|
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
|
|
tauri-plugin-autostart = "2"
|
|
tauri-plugin-cli = "2"
|
|
tauri-plugin-global-shortcut = "2.0.1"
|
|
tauri-plugin-single-instance = { version = "2", features = ["deep-link"] }
|
|
tauri-plugin-updater = "2.0.2"
|
|
tauri-plugin-svelte = "2.1.1"
|