-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (38 loc) · 1.19 KB
/
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
39
40
41
42
[workspace]
resolver = "2"
members = [
"yeet", "yeet-buffer", "yeet-frontend", "yeet-keymap",
]
[workspace.package]
authors = ["Alexander Serowy"]
description = "yet another... tui file manager with a touch of neovim like buffers and modal editing"
edition = "2021"
name = "yeet"
repository = "https://github.com/aserowy/yeet"
version = "0.1.0"
[workspace.dependencies]
ansi-to-tui = "7.0.0"
arboard = { version = "3.4.1", default-features = false, features = ["windows-sys", "wayland-data-control"] }
clap = "4.5.20"
crossterm = { version = "0.28.1", features = ["event-stream"] }
csv = "1.3.0"
dirs = "5.0.1"
flate2 = "1.0.34"
futures = "0.3.31"
image = "0.25.4"
infer = "0.16.0"
notify = { version = "7.0.0", default-features = false, features = ["macos_fsevent"] }
pathdiff = "0.2.2"
ratatui = "0.29.0"
ratatui-image = { version = "3.0.0", features = ["crossterm", "serde"] }
regex = "1.11.1"
syntect = { version = "5.2.0", default-features = false, features = ["default-fancy"]}
tar = "0.4.43"
thiserror = "2.0.3"
tokio = { version = "1.41.0", features = ["full"] }
tokio-util = "0.7.12"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"
[workspace.lints.rust]
unsafe_code = "forbid"