-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
42 lines (39 loc) · 1021 Bytes
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
[package]
name = "cnctl"
version = "0.1.0"
edition = "2024"
description = "CLI for Cloud Native Days Norway"
license = "MIT"
repository = "https://github.com/CloudNativeBergen/cnctl"
readme = "README.md"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
colored = "3"
console = "0.16"
dialoguer = { version = "0.12", features = ["fuzzy-select"] }
dirs = "6"
indicatif = "0.18"
open = "5"
reqwest = { version = "0.13", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = "3"
terminal_size = "0.4"
tiny_http = "0.12"
tokio = { version = "1", features = ["full"] }
toml = "1"
url = "2"
uuid = { version = "1", features = ["v4"] }
[dev-dependencies]
tempfile = "3"
tokio-test = "0.4"
wiremock = "0.6"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
used_underscore_binding = "allow"
items_after_statements = "allow"