-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (28 loc) · 994 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
#
# Copyright 2019, Ulf Lilleengen
# License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html).
#
[package]
name = "dove"
version = "0.3.0"
authors = ["Ulf Lilleengen <[email protected]>", "Michael Watzko <[email protected]>"]
edition = "2021"
description = "Dove is an open source Rust implementation of the AMQP 1.0 OASIS standard (http://www.amqp.org/)."
license = "Apache-2.0"
include = ["README.md", "LICENSE", "src/*.rs", "tests/*.rs", "examples/*.rs"]
repository = "https://github.com/lulf/dove/"
[dependencies]
byteorder = "1.4"
mio = { version = "0.8", features = ["os-poll", "net"] }
uuid = { version = "1.4", features = ["v4"] }
rand = "0.8"
log = "0.4"
async-channel = "1.9"
thiserror = "1.0"
derive_more = { version = "0.99", default-features = false, features = ["from"] }
[dev-dependencies]
futures = "0.3"
tokio = { version = "1", features = ["full"] }
env_logger = "0.10"
testcontainers = "0.14"
reqwest = { version = "0.11" }