-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
58 lines (49 loc) · 1.66 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 = "0.28.6-alpha"
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"
[workspace]
members = [".", "futures/"]
[features]
default = ["native-tls"]
futures = ["futures-core"]
native-tls = ["amq-protocol/native-tls"]
openssl = ["amq-protocol/openssl"]
rustls = ["amq-protocol/rustls"]
[build-dependencies]
amq-protocol-codegen = { version = "^3.1", registry = "crates-io" }
serde_json = { version = "^1.0", registry = "crates-io" }
[dependencies.amq-protocol]
registry = "crates-io"
version = "^3.1"
default-features = false
[dependencies.futures-core]
registry = "crates-io"
version = "^0.3"
optional = true
[dependencies]
crossbeam-channel = { version = "^0.4", registry = "crates-io" }
log = { version = "^0.4", registry = "crates-io" }
mio = { version = "^0.6", registry = "crates-io" }
parking_lot = { version = "^0.10", registry = "crates-io" }
[dev-dependencies]
env_logger = { version = "^0.7", registry = "crates-io" }
futures-executor = { version = "^0.3", registry = "crates-io" }
futures-util = { version = "^0.3", registry = "crates-io" }
futures-test = {version = "^0.3", registry = "crates-io" }
tcp-stream = {version = "^0.8", registry = "crates-io" }
[[example]]
name = "custom_tls_connection"
required-features = ["native-tls"]
[[example]]
name = "pubsub_futures"
required-features = ["futures"]