2026-02-16 11:46:01 +01:00
|
|
|
[package]
|
|
|
|
|
name = "claude-app"
|
|
|
|
|
version = "1.0.0"
|
|
|
|
|
description = "Claude desktop app"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
tauri = { version = "2", features = ["tray-icon", "image-png"] }
|
|
|
|
|
tauri-plugin-notification = "2"
|
|
|
|
|
tauri-plugin-opener = "2"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
url = "2"
|
|
|
|
|
|
2026-02-16 13:04:59 +01:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
|
gtk = { version = "0.18", features = ["v3_24"] }
|
|
|
|
|
|
2026-02-16 11:46:01 +01:00
|
|
|
[features]
|
|
|
|
|
default = ["custom-protocol"]
|
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|