mirror of
https://github.com/block/goose.git
synced 2026-04-28 03:29:36 +00:00
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[package]
|
|
name = "goose2"
|
|
version = "0.1.0"
|
|
description = "Goose desktop app"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "goose-tauri"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "goose2_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["protocol-asset"] }
|
|
tauri-plugin-app-test-driver = { path = "plugins/app-test-driver" }
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-window-state = "2"
|
|
tauri-plugin-log = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
dirs = "6.0.0"
|
|
log = "0.4.29"
|
|
tokio = { version = "1.50.0", features = ["full"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
serde_yaml = "0.9"
|
|
etcetera = "0.8"
|
|
doctor = { git = "https://github.com/block/builderbot", rev = "8e1c3ec145edc0df5f04b4427cfd758378036862" }
|
|
ignore = "0.4.25"
|
|
base64 = "0.22"
|
|
mime_guess = "2"
|
|
tauri-plugin-shell = "2"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
keyring = { version = "3", features = ["apple-native"] }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
keyring = { version = "3", features = ["windows-native"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
keyring = { version = "3", features = ["linux-native-sync-persistent", "crypto-rust"] }
|
|
|
|
[features]
|
|
app-test-driver = []
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|