One-click backups for AT Protocol
at main 1.5 kB view raw
1[package] 2name = "atbackup" 3version = "0.1.3" 4description = "One-click bluesky backups" 5authors = ["Turtlepaw"] 6edition = "2021" 7license = "Apache-2.0" 8 9# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 10 11[lib] 12# The `_lib` suffix may seem redundant but it is necessary 13# to make the lib name unique and wouldn't conflict with the bin name. 14# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 15name = "atproto_backup_lib" 16crate-type = ["staticlib", "cdylib", "rlib"] 17 18[build-dependencies] 19tauri-build = { version = "2", features = [] } 20#tauri = { version = "2.0.0", features = [ "tray-i+con", "api-all", "devtools" ] } 21 22[dependencies] 23tauri = { version = "2", features = ["tray-icon", "devtools"] } 24tauri-plugin-opener = "2" 25serde = { version = "1", features = ["derive"] } 26serde_json = "1" 27tauri-plugin-deep-link = "2" 28tauri-plugin-store = "2" 29tauri-plugin-fs = "2" 30tauri-plugin-process = "2" 31tauri-plugin-shell = "2" 32tokio = { version = "1", features = ["full"] } 33chrono = { version = "0.4", features = ["serde"] } 34tauri-plugin-websocket = "2" 35tauri-plugin-single-instance = { version = "2", features = ["deep-link"] } 36tauri-plugin-log = "2" 37 38[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies] 39tauri-plugin-autostart = "2" 40tauri-plugin-single-instance = "2" 41tauri-plugin-updater = "2" 42 43[profile.release] 44debug = true 45 46[profile.release.package.wry] 47debug = true 48debug-assertions = true