-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (62 loc) · 1.74 KB
/
Cargo.toml
File metadata and controls
66 lines (62 loc) · 1.74 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "stu"
version = "0.7.6"
description = "TUI application for AWS S3 written in Rust using ratatui"
authors = ["Kyosuke Fujimoto <kyoro.f@gmail.com>"]
homepage = "https://lusingander.github.io/stu/"
repository = "https://github.com/lusingander/stu"
readme = "README.md"
license = "MIT"
keywords = ["s3", "aws", "cli", "tui", "terminal"]
categories = ["command-line-utilities"]
edition = "2021"
rust-version = "1.90.0"
exclude = ["/.github", "/img", "/tool", "Makefile", "/docs"]
[dependencies]
ansi-to-tui = "8.0.1"
anyhow = "1.0.100"
arboard = { version = "3.6.1", features = [
"image-data",
"wayland-data-control",
] }
aws-config = "1.8.12"
aws-sdk-s3 = "1.121.0"
aws-smithy-types = "1.4.1"
chardetng = "0.1.17"
chrono = "0.4.43"
clap = { version = "4.5.56", features = ["derive"] }
console = "0.16.1"
crossterm = { version = "0.29.0", features = ["event-stream"] }
encoding_rs = "0.8.35"
futures = "0.3.31"
humansize = "2.1.3"
image = "0.25.9"
indexmap = { version = "2.13.0", features = ["serde"] }
infer = "0.19.0"
itsuki = "0.2.1"
laurier = "0.3.0"
once_cell = "1.21.3"
open = "5.3.3"
ratatui = { version = "0.30.0", features = ["serde"] }
ratatui-image = { version = "10.0.4", default-features = false, features = [
"crossterm",
"image-defaults",
] }
serde = { version = "1.0.219", features = ["derive"] }
smart-default = "0.7.1"
syntect = { version = "5.2.0", default-features = false, features = [
"default-fancy",
] }
textwrap = "0.16.2"
tokio = { version = "1.49.0", features = ["full"] }
toml = "0.9.8"
tracing = "0.1.44"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.22", features = ["chrono"] }
tui-input = "0.15.0"
umbra = "0.4.0"
[dev-dependencies]
rstest = "0.26.1"
[profile.release]
codegen-units = 1
lto = true