-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (63 loc) · 1.72 KB
/
Copy pathCargo.toml
File metadata and controls
69 lines (63 loc) · 1.72 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
67
68
69
[package]
name = "ecscope"
version = "0.4.1"
edition = "2024"
authors = ["Dhruv Thakur"]
repository = "https://github.com/dhth/ecscope"
description = "ecscope lets you monitor AWS ECS resources from the terminal"
homepage = "https://tools.dhruvs.space/ecscope/"
license = "MIT"
keywords = [
"cli",
"ecs",
"aws",
]
categories = [
"command-line-utilities",
]
exclude = [
".github",
"src/server/deployments/client",
"!src/server/deployments/client/index.html",
"!src/server/deployments/client/priv",
]
[dependencies]
anyhow = "1.0.102"
aws-config = { version = "1.8.17", default-features = false, features = ["behavior-version-latest", "credentials-process", "default-https-client", "rt-tokio", "sso"] }
aws-sdk-ecs = { version = "1.126.0", default-features = false, features = ["default-https-client", "rt-tokio"] }
axum = "0.8.9"
clap = { version = "4.6.1", features = ["derive"] }
csv = "1.4.0"
dirs = "6.0.0"
env_logger = "0.11.10"
log = "0.4.30"
open = "5.3.5"
rand = "0.10.1"
ratatui = "0.30.0"
regex = "1.12.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
tempfile = "3.27.0"
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full"] }
toml = {version = "1.1.2", features = ["parse"] }
tower-http = { version = "0.6.11", features = ["cors", "fs"] }
[dev-dependencies]
insta = { version = "1.47.2", features = ["yaml", "filters"] }
insta-cmd = "0.6.0"
tempfile = "3.27.0"
[lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
todo = "deny"
dbg_macro = "deny"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[profile.release]
codegen-units = 1
lto = "fat"
strip = "symbols"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"