forked from ntex-rs/ntex-amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (38 loc) · 978 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
40
41
42
43
44
45
[package]
name = "ntex-amqp"
version = "3.0.4"
authors = ["ntex contributors <[email protected]>"]
description = "AMQP 1.0 Client/Server framework"
documentation = "https://docs.rs/ntex-amqp"
repository = "https://github.com/ntex-rs/ntex-amqp.git"
categories = ["network-programming"]
keywords = ["AMQP", "IoT", "messaging"]
license = "MIT OR Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config"]
edition = "2021"
rust-version = "1.75"
[workspace]
members = [
".",
"codec",
]
[features]
default = []
# log frames on trace level
frame-trace = []
[dependencies]
ntex = "2"
ntex-amqp-codec = "0.9"
bitflags = "2"
log = "0.4"
pin-project-lite = "0.2"
slab = "0.4"
uuid = { version = "1", features = ["v4"] }
derive_more = { version = "1", features = ["display", "from"] }
[dev-dependencies]
env_logger = "0.11"
rand = "0.8"
ntex-amqp = { path = ".", features = ["frame-trace"] }
[patch.crates-io]
ntex-amqp = { path = "." }
ntex-amqp-codec = { path = "codec" }