cosmic-files/Cargo.toml

58 lines
1.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"
2024-01-29 09:47:17 -07:00
rust-version = "1.71"
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"
2024-01-24 09:30:06 -05:00
once_cell = "1.19"
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-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"
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]
git = "https://github.com/pop-os/libcosmic.git"
default-features = false
features = ["multi-window", "tokio", "winit"]
2024-01-03 15:27:32 -07:00
#path = "../libcosmic"
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 = ["wgpu"]
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"