forked from lulf/dove
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 833 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 833 Bytes
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
#
# 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.1.2"
authors = ["Ulf Lilleengen <ulf.lilleengen@gmail.com>"]
edition = "2018"
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.7", features = ["tcp", "os-poll"] }
uuid = { version = "0.8", features = ["v4"] }
rand = "0.8"
log = "0.4"
[dev-dependencies]
futures = "0.3"
tokio = { version = "1", features = ["full"] }
env_logger = "0.8"
testcontainers = "0.12"
reqwest = { version = "0.11" }