forked from amqp-rs/lapin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (66 loc) · 2.02 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
[package]
name = "lapin"
version = "2.0.0-alpha.4"
edition = "2018"
authors = ["Geoffroy Couprie <geo.couprie@gmail.com>", "Marc-Antoine Perennou <Marc-Antoine@Perennou.com>"]
description = "AMQP client library"
repository = "https://github.com/CleverCloud/lapin"
readme = "README.md"
documentation = "https://docs.rs/lapin"
keywords = ["amqp", "rabbitmq", "mio", "futures"]
categories = ["database"]
license = "MIT"
build = "build.rs"
[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"]
[workspace]
members = [".", "async-global-executor", "async-lapin", "async-std", "bastion", "lapinou", "tokio"]
[build-dependencies.amq-protocol-codegen]
version = "=7.0.0-alpha.7"
optional = true
[build-dependencies.serde_json]
version = "^1.0"
optional = true
[dependencies.amq-protocol]
version = "=7.0.0-alpha.7"
default-features = false
[dependencies.async-global-executor-trait]
version = "^2.0"
features = ["async-io"]
[dependencies.flume]
version = "^0.10"
default-features = false
features = ["async"]
[dependencies.serde]
version = "^1.0"
features = ["derive"]
[dependencies.tracing]
version = "^0.1"
default-features = false
[dependencies]
async-reactor-trait = "^0.2"
async-trait = "^0.1.42"
executor-trait = "^2.0"
futures-lite = "^1.7"
parking_lot = "^0.11"
pinky-swear = "^5.1"
reactor-trait = "^0.2"
waker-fn = "^1.1"
[dev-dependencies]
async-global-executor = "^2.0"
serde_json = "^1.0"
waker-fn = "^1.1"
[dev-dependencies.tracing-subscriber]
version = "^0.2"
features = ["fmt"]
[[example]]
name = "custom_tls_connection"
required-features = ["native-tls"]