-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
46 lines (43 loc) · 1.21 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
43
44
45
46
[package]
name = "ddv"
version = "0.1.0"
description = "Terminal DynamoDB Viewer"
authors = ["Kyosuke Fujimoto <[email protected]>"]
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.81.0"
exclude = ["/.github", "/img"]
[dependencies]
ansi-to-tui = "7.0.0"
arboard = "3.4.1"
aws-config = "1.5.17"
aws-sdk-dynamodb = "1.66.0"
aws-smithy-types = "1.2.13"
base64 = "0.22.1"
chrono = { version = "0.4.40", features = ["serde"] }
clap = { version = "4.5.31", features = ["derive"] }
console = "0.15.10"
humansize = "2.1.3"
itsuki = "0.2.0"
once_cell = "1.20.3"
ratatui = { version = "0.29.0", features = ["unstable-widget-ref"] }
rust_decimal = "1.36.0"
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.139"
serde_with = "3.12.0"
smart-default = "0.7.1"
syntect = { version = "5.2.0", default-features = false, features = [
"default-fancy",
] }
textwrap = "0.16.1"
tokio = { version = "1.43.0", features = ["full"] }
toml = "0.8.20"
umbra = "0.4.0"
[profile.release]
codegen-units = 1
lto = true