Skip to content

Commit

Permalink
Fix defualt dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jpttrssn committed Jan 11, 2025
1 parent 37f4afa commit 97e501d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ rust-version = "1.80"
name = "cosmic"

[features]
default = ["multi-window", "a11y"]
default = ["multi-window", "a11y", "dep:shlex"]
# Accessibility support
a11y = ["iced/a11y", "iced_accessibility"]
# Enable about widget
Expand Down
1 change: 1 addition & 0 deletions src/desktop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ use std::path::{Path, PathBuf};
#[cfg(not(windows))]
use std::{borrow::Cow, ffi::OsStr};

#[cfg(not(windows))]
use crate::mime_app::{exec_term_to_command, exec_to_command};

#[derive(Debug, Clone, PartialEq, Eq)]
Expand Down

0 comments on commit 97e501d

Please sign in to comment.