cosmic-files/Cargo.toml

68 lines
1.5 KiB
TOML
Raw Normal View History

2024-01-03 15:27:32 -07:00
[package]
name = "cosmic-files"
version = "0.1.0"
authors = ["Jeremy Soller <jeremy@system76.com>"]
2024-01-03 15:27:32 -07:00
edition = "2021"
license = "GPL-3.0-only"
2024-01-29 09:47:17 -07:00
rust-version = "1.71"
2024-01-03 15:27:32 -07:00
[build-dependencies]
vergen = { version = "8", features = ["git", "gitcl"] }
2024-01-03 15:27:32 -07:00
[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"
2024-01-28 06:23:40 -05:00
env_logger = "0.11"
freedesktop_entry_parser = { version = "1.3", optional = true }
2024-02-22 16:17:39 -07:00
image = "0.24"
2024-01-24 09:30:06 -05:00
once_cell = "1.19"
open = "5.0.2"
2024-01-05 09:44:47 -07:00
lexical-sort = "0.3.1"
2024-01-03 15:27:32 -07:00
log = "0.4"
2024-02-22 15:04:37 -07:00
mime_guess = "2"
2024-01-30 11:26:23 -07:00
notify = "6"
paste = "1.0"
2024-01-03 15:27:32 -07:00
serde = { version = "1", features = ["serde_derive"] }
tokio = { version = "1" }
2024-01-10 08:53:22 -07:00
trash = "3.2.0"
xdg = { version = "2.5.2", optional = true }
2024-01-03 15:27:32 -07:00
# Internationalization
2024-01-24 09:30:06 -05:00
i18n-embed = { version = "0.14", features = [
"fluent-system",
"desktop-requester",
] }
i18n-embed-fl = "0.7"
rust-embed = "8"
2024-01-03 15:27:32 -07:00
[dependencies.libcosmic]
2024-03-01 09:22:38 -07:00
git = "https://github.com/pop-os/libcosmic.git"
2024-01-03 15:27:32 -07:00
default-features = false
features = ["multi-window", "tokio", "winit"]
2024-01-03 15:27:32 -07:00
2024-02-09 07:09:51 -07:00
[dependencies.smol_str]
version = "0.2.1"
features = ["serde"]
#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 = ["desktop", "wgpu"]
desktop = ["libcosmic/desktop", "dep:freedesktop_entry_parser", "dep:xdg"]
2024-01-03 15:27:32 -07:00
wgpu = ["libcosmic/wgpu"]
[profile.release-with-debug]
inherits = "release"
debug = true
[target.'cfg(unix)'.dependencies]
fork = "0.1"
[dev-dependencies]
# cap-std = "3"
# cap-tempfile = "3"
fastrand = "2"
tempfile = "3"
test-log = "0.2"