mirror of
https://github.com/orbien-org/orbien.git
synced 2026-09-21 16:01:31 +00:00
36 lines
839 B
TOML
36 lines
839 B
TOML
[package]
|
|
name = "orbien-desktop"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
description = "Orbien Desktop — native Slint UI (in-process client)"
|
|
build = "build.rs"
|
|
|
|
[[bin]]
|
|
name = "orbien-desktop"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
slint = { version = "1.17", features = ["unstable-winit-030"] }
|
|
orbien-client = { workspace = true }
|
|
orbien-core = { workspace = true }
|
|
tokio = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
toml = { workspace = true }
|
|
serde = { workspace = true }
|
|
rfd = "0.15"
|
|
uuid = { workspace = true }
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
objc2 = "0.6"
|
|
|
|
[build-dependencies]
|
|
slint-build = "1.17"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1"
|