-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (37 loc) · 883 Bytes
/
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
[package]
name = "rabbitmqadmin"
version = "2.1.0"
edition = "2024"
description = "rabbitmqadmin v2 is a modern CLI tool for the RabbitMQ HTTP API"
license = "MIT OR Apache-2.0"
[dependencies]
clap = { version = "4", features = ["help", "color", "cargo", "env"] }
url = "2"
sysexits = "0.9"
reqwest = { version = "0.12.12", features = [
"blocking",
"json",
"multipart",
"__rustls",
"rustls-tls-native-roots",
] }
rabbitmq_http_client = { version = "0.29.0", features = [
"core",
"blocking",
"tabled",
] }
serde = { version = "1.0", features = ["derive", "std"] }
serde_json = "1"
tabled = "0.18"
toml = "0.8"
color-print = "0.3"
thiserror = "2"
shellexpand = "3.0"
log = "0.4"
rustls = { version = "0.23", features = ["aws_lc_rs"] }
# fern = "0.7"
# humantime = "2.1.0"
# backtrace = "0.3"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"