commit
1018ebecaf
3 changed files with 449 additions and 411 deletions
832
Cargo.lock
generated
832
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
26
Cargo.toml
26
Cargo.toml
|
|
@ -12,7 +12,7 @@ vergen = { version = "8", features = ["git", "gitcl"] }
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = { version = "0.4", features = ["unstable-locales"] }
|
chrono = { version = "0.4", features = ["unstable-locales"] }
|
||||||
cosmic-mime-apps = { git = "https://github.com/pop-os/cosmic-mime-apps.git", optional = true }
|
cosmic-mime-apps = { git = "https://github.com/pop-os/cosmic-mime-apps.git", optional = true }
|
||||||
dirs = "5.0.1"
|
dirs = "6.0.0"
|
||||||
env_logger = "0.11"
|
env_logger = "0.11"
|
||||||
freedesktop_entry_parser = "1.3"
|
freedesktop_entry_parser = "1.3"
|
||||||
gio = { version = "0.20", optional = true }
|
gio = { version = "0.20", optional = true }
|
||||||
|
|
@ -27,8 +27,8 @@ log = "0.4"
|
||||||
mime_guess = "2"
|
mime_guess = "2"
|
||||||
notify-debouncer-full = "0.3"
|
notify-debouncer-full = "0.3"
|
||||||
notify-rust = { version = "4", optional = true }
|
notify-rust = { version = "4", optional = true }
|
||||||
once_cell = "1.19"
|
once_cell = "1.20"
|
||||||
open = "5.0.2"
|
open = "5.3.2"
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
serde = { version = "1", features = ["serde_derive"] }
|
serde = { version = "1", features = ["serde_derive"] }
|
||||||
|
|
@ -39,32 +39,32 @@ tokio = { version = "1", features = ["process", "sync"] }
|
||||||
trash = { git = "https://github.com/jackpot51/trash-rs.git", branch = "cosmic" }
|
trash = { git = "https://github.com/jackpot51/trash-rs.git", branch = "cosmic" }
|
||||||
url = "2.5"
|
url = "2.5"
|
||||||
walkdir = "2.5.0"
|
walkdir = "2.5.0"
|
||||||
wayland-client = { version = "0.31.5", optional = true }
|
wayland-client = { version = "0.31.8", optional = true }
|
||||||
xdg = { version = "2.5.2", optional = true }
|
xdg = { version = "2.5.2", optional = true }
|
||||||
xdg-mime = "0.3"
|
xdg-mime = "0.4"
|
||||||
# Compression
|
# Compression
|
||||||
bzip2 = { version = "0.4", optional = true } #TODO: replace with pure Rust crate
|
bzip2 = { version = "0.5", optional = true } #TODO: replace with pure Rust crate
|
||||||
flate2 = "1.0"
|
flate2 = "1.0"
|
||||||
liblzma = { version = "0.3", optional = true } #TODO: replace with pure Rust crate
|
liblzma = { version = "0.3", optional = true } #TODO: replace with pure Rust crate
|
||||||
tar = "0.4.41"
|
tar = "0.4.43"
|
||||||
# Internationalization
|
# Internationalization
|
||||||
i18n-embed = { version = "0.14", features = [
|
i18n-embed = { version = "0.15", features = [
|
||||||
"fluent-system",
|
"fluent-system",
|
||||||
"desktop-requester",
|
"desktop-requester",
|
||||||
] }
|
] }
|
||||||
i18n-embed-fl = "0.7"
|
i18n-embed-fl = "0.9"
|
||||||
rust-embed = "8"
|
rust-embed = "8"
|
||||||
slotmap = "1.0.7"
|
slotmap = "1.0.7"
|
||||||
recently-used-xbel = "1.1.0"
|
recently-used-xbel = "1.1.0"
|
||||||
zip = "2.1.6"
|
zip = "2.2.2"
|
||||||
unix_permissions_ext = "0.1.2"
|
unix_permissions_ext = "0.1.2"
|
||||||
uzers = "0.12.0"
|
uzers = "0.12.1"
|
||||||
|
|
||||||
[dependencies.libcosmic]
|
[dependencies.libcosmic]
|
||||||
git = "https://github.com/pop-os/libcosmic.git"
|
git = "https://github.com/pop-os/libcosmic.git"
|
||||||
default-features = false
|
default-features = false
|
||||||
#TODO: a11y feature crashes
|
#TODO: a11y feature crashes
|
||||||
features = ["multi-window", "tokio", "winit"]
|
features = ["dbus-config", "multi-window", "tokio", "winit"]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["bzip2", "desktop", "gvfs", "liblzma", "notify", "wgpu"]
|
default = ["bzip2", "desktop", "gvfs", "liblzma", "notify", "wgpu"]
|
||||||
|
|
@ -83,7 +83,7 @@ inherits = "release"
|
||||||
debug = true
|
debug = true
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
fork = "0.1"
|
fork = "0.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
# cap-std = "3"
|
# cap-std = "3"
|
||||||
|
|
|
||||||
|
|
@ -10,4 +10,4 @@ zbus = "4"
|
||||||
[dependencies.cosmic-files]
|
[dependencies.cosmic-files]
|
||||||
path = ".."
|
path = ".."
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["desktop", "gvfs", "wayland", "wgpu"]
|
features = ["desktop", "gvfs", "wayland", "wgpu"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue