mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-28 02:18:01 -04:00
17 lines
556 B
TOML
17 lines
556 B
TOML
[package]
|
|
name = "sd-desktop-linux"
|
|
version = "0.1.0"
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
libc = { workspace = true }
|
|
tokio = { workspace = true, features = ["fs"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
wgpu = { version = "0.20.0", default-features = false }
|
|
# WARNING: gtk should follow the same version used by tauri
|
|
# https://github.com/tauri-apps/tauri/blob/tauri-v2.0.0-beta.17/core/tauri/Cargo.toml#L85C1-L85C51
|
|
gtk = { version = "0.18", features = ["v3_24"] }
|