Skip to content

Commit 97e501d

Browse files
committed
Fix defualt dependencies
1 parent 37f4afa commit 97e501d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rust-version = "1.80"
88
name = "cosmic"
99

1010
[features]
11-
default = ["multi-window", "a11y"]
11+
default = ["multi-window", "a11y", "dep:shlex"]
1212
# Accessibility support
1313
a11y = ["iced/a11y", "iced_accessibility"]
1414
# Enable about widget

src/desktop.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use std::path::{Path, PathBuf};
66
#[cfg(not(windows))]
77
use std::{borrow::Cow, ffi::OsStr};
88

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

1112
#[derive(Debug, Clone, PartialEq, Eq)]

0 commit comments

Comments
 (0)