-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 890 Bytes
/
Cargo.toml
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
34
35
36
37
38
# See: https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "tmuxion"
version = "0.1.0"
description = "An opinionated tmux session manager"
edition = "2021"
publish = false
[dependencies]
anyhow = "1.0.93"
clap = { version = "4.5.21", features = ["derive", "env", "string"] }
dirs = "5.0.1"
fuzzy-matcher = "0.3.7"
mlua = { version = "0.10.2", features = [
"lua54",
"macros",
"send",
"serialize",
"vendored",
] }
once_cell = "1.20.2"
ratatui = "0.29.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
tmux_interface = { version = "0.3.2", default-features = false, features = [
"tmux_stable",
] }
unicode-segmentation = "1.12.0"
[lints.rust]
nonstandard_style = { level = "deny", priority = -1 }
unsafe_code = "forbid"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
similar_names = "allow"
unwrap_used = "warn"