-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 1.16 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
[package]
name = "terraform-module-data"
version = "0.1.0"
authors = ["Bryant Biggs <[email protected]>"]
documentation = "https://github.com/clowdhaus/terraform-module-data"
homepage = "https://github.com/clowdhaus/terraform-module-data"
repository = "https://github.com/clowdhaus/terraform-module-data"
license = "Apache-2.0"
edition = "2021"
categories = [
"command-line-utilities",
]
[[bin]]
name = "tmd"
path = "src/main.rs"
[dependencies]
anstyle = "1.0"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.2", features = ["derive", "env", "color", "unstable-styles"] }
clap-verbosity-flag = "3.0"
plotly = "0.11"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = { version = "0.1", default-features = false, features = ["log-always"] }
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "std", "ansi"] }
tokio = { version = "1.23", default-features = false, features = ["macros", "rt-multi-thread"] }
url = "2.5"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin_include)"] }