2026-03-15 19:44:02 +01:00
|
|
|
[package]
|
|
|
|
|
name = "owncord-client"
|
2026-07-19 10:50:37 +02:00
|
|
|
version = "1.1.0-alpha.2"
|
2026-03-15 19:44:02 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
description = "OwnCord Desktop Client"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "owncord_client_lib"
|
|
|
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
tauri-build = { version = "2", features = [] }
|
2026-04-01 11:40:55 +02:00
|
|
|
tauri-typegen = "0.5"
|
2026-03-15 19:44:02 +01:00
|
|
|
|
2026-03-20 12:30:12 +01:00
|
|
|
[features]
|
2026-04-04 09:07:53 +02:00
|
|
|
default = []
|
2026-03-20 12:30:12 +01:00
|
|
|
devtools = ["tauri/devtools"]
|
|
|
|
|
|
2026-03-15 19:44:02 +01:00
|
|
|
[dependencies]
|
2026-03-20 12:30:12 +01:00
|
|
|
tauri = { version = "2", features = ["tray-icon"] }
|
2026-03-15 19:44:02 +01:00
|
|
|
tauri-plugin-store = "2"
|
|
|
|
|
tauri-plugin-notification = "2"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
2026-07-19 14:26:25 +00:00
|
|
|
# Self-signed server certificates are handled by the Rust TOFU proxies
|
|
|
|
|
# (ws_proxy, livekit_proxy, http_proxy), NOT by the plugin's dangerous-settings
|
|
|
|
|
# feature — REST traffic is tunneled through http_proxy which pins the cert to
|
|
|
|
|
# the trust-on-first-use fingerprint. The plugin therefore does default TLS
|
|
|
|
|
# validation (used only for external hosts: image CDNs, OG previews, YouTube).
|
|
|
|
|
tauri-plugin-http = { version = "2.5.7", features = ["rustls-tls"] }
|
2026-03-18 14:13:52 +01:00
|
|
|
tauri-plugin-opener = "2"
|
2026-03-18 17:10:16 +01:00
|
|
|
tauri-plugin-dialog = "2"
|
|
|
|
|
tauri-plugin-fs = "2"
|
2026-07-23 18:38:22 +02:00
|
|
|
# Minor-pinned per the plugin's own guidance: configure_client hands it a
|
|
|
|
|
# preconfigured rustls ClientConfig, and a 2.x minor bump can change the
|
|
|
|
|
# plugin's bundled reqwest/rustls and break that seam at runtime.
|
|
|
|
|
tauri-plugin-updater = "2.10"
|
2026-03-18 17:47:59 +01:00
|
|
|
tauri-plugin-process = "2"
|
|
|
|
|
url = "2"
|
2026-03-15 19:44:02 +01:00
|
|
|
tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-webpki-roots"] }
|
|
|
|
|
futures-util = "0.3.32"
|
2026-03-28 10:39:23 +01:00
|
|
|
tokio = { version = "1", features = ["sync", "net", "io-util", "rt", "macros"] }
|
|
|
|
|
tokio-rustls = { version = "0.26", default-features = false }
|
2026-03-15 19:44:02 +01:00
|
|
|
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
|
2026-07-23 18:38:22 +02:00
|
|
|
# Mozilla root bundle for the updater's HostScopedVerifier: non-pinned hosts
|
|
|
|
|
# (the GitHub installer download) get web-PKI validation. Already in the
|
|
|
|
|
# dependency tree via tokio-tungstenite's rustls-tls-webpki-roots feature.
|
|
|
|
|
webpki-roots = "1"
|
2026-03-17 11:05:52 +01:00
|
|
|
ring = "0.17"
|
2026-03-28 20:42:37 +01:00
|
|
|
log = "0.4"
|
|
|
|
|
env_logger = "0.11"
|
2026-04-03 14:26:26 +02:00
|
|
|
keyring = "3"
|
2026-04-03 23:18:06 +02:00
|
|
|
rfd = { version = "0.16", default-features = false }
|
2026-03-16 16:43:46 +01:00
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2026-04-03 14:26:26 +02:00
|
|
|
windows = { version = "0.58", features = ["Win32_UI_Input_KeyboardAndMouse"] }
|
|
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
|
device_query = "2"
|