forked from amqp-rs/lapin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
85 lines (72 loc) · 2.11 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
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
80
81
82
83
84
85
[package]
name = "lapin"
version = "2.3.3"
edition = "2021"
authors = ["Geoffroy Couprie <geo.couprie@gmail.com>", "Marc-Antoine Perennou <Marc-Antoine@Perennou.com>"]
description = "AMQP client library"
repository = "https://github.com/amqp-rs/lapin"
readme = "README.md"
documentation = "https://docs.rs/lapin"
keywords = ["amqp", "rabbitmq", "mio", "futures"]
categories = ["database"]
license = "MIT"
build = "build.rs"
rust-version = "1.74.0"
[features]
default = ["rustls"]
codegen = ["codegen-internal", "amq-protocol/codegen"]
codegen-internal = ["amq-protocol-codegen", "serde_json"]
native-tls = ["amq-protocol/native-tls"]
openssl = ["amq-protocol/openssl"]
rustls = ["rustls-native-certs"]
rustls-native-certs = ["amq-protocol/rustls-native-certs"]
rustls-webpki-roots-certs = ["amq-protocol/rustls-webpki-roots-certs"]
vendored-openssl = ["amq-protocol/vendored-openssl"]
[build-dependencies.amq-protocol-codegen]
version = "^7.0"
optional = true
[build-dependencies.serde_json]
version = "^1.0"
optional = true
[dependencies.amq-protocol]
version = "^7.0"
default-features = false
[dependencies.async-global-executor-trait]
version = "^2.1"
features = ["async-io"]
[dependencies.flume]
version = "^0.11"
default-features = false
features = ["async"]
[dependencies.serde]
version = "^1.0"
features = ["derive"]
[dependencies.tracing]
version = "^0.1"
default-features = false
[dependencies]
async-reactor-trait = "^1.1"
async-trait = "^0.1.42"
executor-trait = "^2.1"
futures-core = "^0.3"
futures-io = "^0.3"
parking_lot = "^0.12"
pinky-swear = "^6.1"
reactor-trait = "^1.1"
waker-fn = "^1.1"
[dev-dependencies]
async-global-executor = "^2.0"
futures-lite = "^2.0"
serde_json = "^1.0"
waker-fn = "^1.1"
tokio = { version = "1.17.0", features = ["full"] }
tokio-executor-trait = "2.1.0"
tokio-reactor-trait = "1.1.0"
[dev-dependencies.tracing-subscriber]
version = "^0.3"
features = ["fmt"]
[[example]]
name = "custom_tls_connection"
required-features = ["native-tls"]
[badges]
maintenance = { status = "actively-developed" }