-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 818 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "mmtui"
version = "0.2.0"
edition = "2021"
authors = ["Lutsai Aleksandr <s.lyra@ya.ru>"]
description = "Terminal User Interface disk mount manager for TUI file managers"
repository = "https://github.com/SL-RU/mmtui"
license = "MIT"
[dependencies]
crossterm = { version = "0.28.1", features = ["event-stream"]}
ratatui = "0.29.0"
serde = "1.0.228"
sys-mount = "3.0.1"
tokio = {version = "1.42.0", features = ["full"]}
tokio-stream = "0.1.17"
toml = "0.9.10"
udisks2 = "0.2.0"
xdg = "3.0.0"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
must_use_candidate = { level = "allow" }
expect_used = { level = "allow" }
unwrap_used = { level = "allow" }
panic = { level = "allow" }
doc_markdown = { level = "allow" }
[profile.release]
strip = true
[package.metadata.aur]
depends = ["udisks2"]