-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
39 lines (35 loc) · 925 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
[package]
name = "rabbitmq_http_client"
version = "0.9.0"
edition = "2021"
description = "RabbitMQ HTTP API client"
license = "MIT OR Apache-2.0"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde-aux = "4.5"
serde_json = "1"
rand = "0.8"
ring = "0.17"
rbase64 = "2"
reqwest = { version = "0.12", features = [
"json",
"multipart",
], optional = true }
thiserror = { version = "1", optional = true }
percent-encoding = { version = "2", optional = true }
tabled = { version = "0.16", features = ["derive", "macros"], optional = true }
[dev-dependencies]
amqprs = "1"
cargo-nextest = "0.9.81"
# tokio = { version = "1", features = ["rt", "net"] }
[features]
default = ["core", "blocking"]
core = []
async = ["dep:reqwest", "dep:thiserror", "dep:percent-encoding"]
blocking = [
"dep:reqwest",
"reqwest/blocking",
"dep:thiserror",
"dep:percent-encoding",
]
tabled = ["dep:tabled"]