cosmic-files/Cargo.toml

44 lines
1 KiB
TOML
Raw Normal View History

2024-01-03 15:27:32 -07:00
[package]
name = "cosmic-files"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-01-05 14:44:20 -07:00
chrono = { version = "0.4", features = ["unstable-locales"] }
2024-01-03 15:27:32 -07:00
dirs = "5.0.1"
env_logger = "0.10"
lazy_static = "1"
2024-01-05 09:44:47 -07:00
lexical-sort = "0.3.1"
2024-01-03 15:27:32 -07:00
log = "0.4"
serde = { version = "1", features = ["serde_derive"] }
tokio = { version = "1" }
2024-01-10 08:53:22 -07:00
trash = "3.2.0"
2024-01-03 15:27:32 -07:00
# Internationalization
i18n-embed = { version = "0.13", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6"
rust-embed = "6"
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
default-features = false
features = ["tokio", "winit"]
#path = "../libcosmic"
#TODO: clean up and send changes upstream
[dependencies.systemicons]
git = "https://github.com/jackpot51/systemicons"
2024-01-03 15:27:32 -07:00
[features]
default = ["wgpu"]
wgpu = ["libcosmic/wgpu"]
[patch.crates-io]
smithay-client-toolkit = { git = "https://github.com/pop-os/client-toolkit", branch = "wayland-resize" }
[profile.release-with-debug]
inherits = "release"
debug = true
[target.'cfg(unix)'.dependencies]
fork = "0.1"