| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- [package]
- name = "opencode-desktop"
- version = "0.0.0"
- description = "The open source AI coding agent"
- authors = ["Anomaly Innovations"]
- edition = "2024"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [lib]
- # The `_lib` suffix may seem redundant but it is necessary
- # to make the lib name unique and wouldn't conflict with the bin name.
- # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
- name = "opencode_lib"
- crate-type = ["staticlib", "cdylib", "rlib"]
- [build-dependencies]
- tauri-build = { version = "2", features = [] }
- [dependencies]
- tauri = { version = "2.9.5", features = ["macos-private-api", "devtools"] }
- tauri-plugin-opener = "2"
- tauri-plugin-deep-link = "2.4.6"
- tauri-plugin-shell = "2"
- tauri-plugin-dialog = "2"
- tauri-plugin-updater = "2"
- tauri-plugin-process = "2"
- tauri-plugin-store = "2"
- tauri-plugin-window-state = "2"
- tauri-plugin-clipboard-manager = "2"
- tauri-plugin-http = "2.5.6"
- tauri-plugin-notification = "2"
- tauri-plugin-single-instance = { version = "2", features = ["deep-link"] }
- serde = { version = "1", features = ["derive"] }
- serde_json = "1"
- tokio = "1.48.0"
- listeners = "0.3"
- tauri-plugin-os = "2"
- futures = "0.3.31"
- semver = "1.0.27"
- reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
- uuid = { version = "1.19.0", features = ["v4"] }
- tauri-plugin-decorum = "1.1.1"
- comrak = { version = "0.50", default-features = false }
- specta = "=2.0.0-rc.22"
- specta-typescript = "0.0.9"
- tauri-specta = { version = "=2.0.0-rc.21", features = ["derive", "typescript"] }
- [target.'cfg(target_os = "linux")'.dependencies]
- gtk = "0.18.2"
- webkit2gtk = "=2.0.2"
- [target.'cfg(target_os = "macos")'.dependencies]
- objc2 = "0.6"
- objc2-web-kit = "0.3"
- [target.'cfg(windows)'.dependencies]
- windows = { version = "0.61", features = [
- "Win32_Foundation",
- "Win32_System_JobObjects",
- "Win32_System_Threading",
- "Win32_Security"
- ] }
- [patch.crates-io]
- specta = { git = "https://github.com/specta-rs/specta", rev = "106425eac4964d8ff34d3a02f1612e33117b08bb" }
- specta-typescript = { git = "https://github.com/specta-rs/specta", rev = "106425eac4964d8ff34d3a02f1612e33117b08bb" }
- tauri-specta = { git = "https://github.com/specta-rs/tauri-specta", rev = "6720b2848eff9a3e40af54c48d65f6d56b640c0b" }
- # TODO: https://github.com/tauri-apps/tauri/pull/14812
- tauri = { git = "https://github.com/tauri-apps/tauri", rev = "4d5d78daf636feaac20c5bc48a6071491c4291ee" }
|