-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (47 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
51 lines (47 loc) · 1.23 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
[package]
name = "ddv"
version = "0.3.1"
description = "Terminal DynamoDB Viewer"
authors = ["Kyosuke Fujimoto <kyoro.f@gmail.com>"]
homepage = "https://github.com/lusingander/ddv"
repository = "https://github.com/lusingander/ddv"
readme = "README.md"
license = "MIT"
keywords = ["dynamodb", "aws", "cli", "tui", "terminal"]
categories = ["command-line-utilities"]
edition = "2021"
rust-version = "1.92.0"
exclude = ["/.github", "/img"]
[dependencies]
ansi-to-tui = "8.0.1"
arboard = "3.6.1"
aws-config = "1.8.15"
aws-sdk-dynamodb = "1.108.0"
aws-smithy-types = "1.4.6"
base64 = "0.22.1"
chrono = { version = "0.4.44", features = ["serde"] }
clap = { version = "4.6.0", features = ["derive"] }
console = "0.16.3"
humansize = "2.1.3"
itsuki = "0.2.1"
laurier = "0.3.0"
once_cell = "1.21.4"
ratatui = "0.30.0"
rust_decimal = "1.40.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_with = "3.18.0"
smart-default = "0.7.1"
syntect = { version = "5.3.0", default-features = false, features = [
"default-fancy",
] }
textwrap = "0.16.2"
tokio = { version = "1.50.0", features = ["full"] }
toml = "0.9.8"
tui-input = "0.15.0"
umbra = "0.4.0"
[dev-dependencies]
rstest = "0.26.1"
[profile.release]
codegen-units = 1
lto = true