Files

55 lines
1.3 KiB
TOML
Raw Permalink Normal View History

[package]
name = "cut-think-lite"
version = "0.1.0"
description = "CutThenThink Lite - AI-powered Clipboard Manager"
authors = ["CutThenThink Team"]
license = "MIT"
repository = "https://github.com/cutthenthink/cutThink-lite"
edition = "2021"
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"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2.5.4" }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
tauri = { version = "2.10.0" }
tauri-plugin-log = "2"
tauri-plugin-global-shortcut = "2"
tauri-plugin-shell = "2"
screenshots = "0.7"
image = "0.24"
base64 = "0.21"
chrono = "0.4"
arboard = "3.2"
anyhow = "1.0"
dirs = "5.0"
# Phase 3 dependencies
reqwest = { version = "0.11", features = ["json", "multipart"] }
tokio = { version = "1", features = ["full"] }
rusqlite = { version = "0.30", features = ["bundled", "chrono"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
notify = "6.0"
# Phase 4 dependencies
sha2 = "0.10"
hex = "0.4"
hmac = "0.12"
aes-gcm = "0.10"
rand = "0.8"
urlencoding = "2.1"
futures-util = "0.3"
tempfile = "3.3"
# Phase 5 dependencies (AI)
thiserror = "1.0"