claude-app/src-tauri/Cargo.toml

23 lines
569 B
TOML
Raw Normal View History

[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"
[target.'cfg(target_os = "linux")'.dependencies]
gtk = { version = "0.18", features = ["v3_24"] }
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]