forked from amqp-rs/lapin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (49 loc) · 1.48 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
[package]
name = "lapin"
version = "1.0.0-rc6"
edition = "2018"
authors = ["Geoffroy Couprie <[email protected]>", "Marc-Antoine Perennou <[email protected]>"]
description = "AMQP client library"
repository = "https://github.com/sozu-proxy/lapin"
readme = "README.md"
documentation = "https://docs.rs/lapin"
keywords = ["amqp", "rabbitmq", "mio", "futures"]
categories = ["database"]
license = "MIT"
build = "build.rs"
[features]
default = ["native-tls"]
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-std", "lapinou", "tokio"]
[build-dependencies]
amq-protocol-codegen = "=6.0.0-rc9"
serde_json = "^1.0"
[dependencies.amq-protocol]
version = "=6.0.0-rc9"
default-features = false
[dependencies.mio]
version = "^0.7"
features = ["os-poll", "tcp"]
[dependencies]
async-task = "^3.0"
crossbeam-channel = "^0.4"
futures-core = "^0.3"
log = "^0.4"
parking_lot = "^0.10"
pinky-swear = "^4.0"
[dev-dependencies.futures-executor]
version = "^0.3"
features = ["thread-pool"]
[dev-dependencies]
env_logger = "^0.7"
futures-test = "^0.3"
futures-util = "^0.3"
[[example]]
name = "custom_tls_connection"
required-features = ["native-tls"]