-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (71 loc) · 1.88 KB
/
Cargo.toml
File metadata and controls
79 lines (71 loc) · 1.88 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
70
71
72
73
74
75
76
77
78
79
[package]
name = "rabbitmq_http_client"
version = "0.85.0"
edition = "2024"
rust-version = "1.94"
description = "RabbitMQ HTTP API client"
license = "MIT OR Apache-2.0"
repository = "https://github.com/michaelklishin/rabbitmq-http-api-rs"
keywords = [
"rabbitmq"
]
[lib]
# doctests for async client must be wrapped
# with a Tokio block_on block or marked with no_run,
# or skipped entirely, which is what we want
doctest = false
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde-aux = "4.6"
serde_json = "1.0"
rand = "0.10"
ring = "0.17"
rbase64 = "2.0"
percent-encoding = { version = "2.3", optional = true }
tabled = { version = "0.20", features = ["derive", "macros"], optional = true }
regex = { version = "1.12", features = ["std"] }
url = "2.5"
urlencoding = "2.1"
log = "0.4"
reqwest = { version = "0.13", default-features = false, features = [
"json",
"multipart",
], optional = true }
backtrace = { version = "0.3", optional = true }
thiserror = { version = "2.0", optional = true }
tokio = "1.49"
time = { version = "0.3", features = ["serde-human-readable"] }
zeroize = { version = "1.8", features = ["zeroize_derive"], optional = true }
[dev-dependencies]
amqprs = { version = "2.1" }
cargo-nextest = "0.9"
proptest = "1.9"
fern = "0.7"
zeroize = { version = "1.8", features = ["zeroize_derive"] }
[features]
default = ["blocking", "default-tls"]
async = [
"dep:reqwest",
"dep:thiserror",
"dep:backtrace",
"dep:percent-encoding",
]
blocking = [
"dep:reqwest",
"reqwest/blocking",
"dep:thiserror",
"dep:backtrace",
"dep:percent-encoding",
]
tabled = ["dep:tabled"]
default-tls = ["reqwest?/default-tls"]
native-tls = ["reqwest?/native-tls"]
rustls = ["reqwest?/rustls"]
hickory-dns = ["reqwest?/hickory-dns"]
zeroize = ["dep:zeroize"]
[profile.ci]
inherits = "dev"
opt-level = "s"
strip = true
[lints.clippy]
uninlined_format_args = "allow"