-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 769 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 769 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
28
29
30
31
32
33
34
35
[package]
name = "async_zmq"
version = "0.4.0"
authors = [
"Yu-Wei Wu <wusyong9104@gmail.com>",
"Ricardo Delfin <me@rdelfin.com>",
]
edition = "2021"
description = "Async version for ZeroMQ bindings"
keywords = ["async", "bindings", "protocol", "zmq"]
categories = [
"asynchronous",
"api-bindings",
"concurrency",
"network-programming",
]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/rdelfin/async-zmq"
documentation = "https://docs.rs/async-zmq"
[dependencies]
mio = "0.6"
zmq = "0.10"
futures = "0.3"
slab = "0.4"
thiserror = "1.0"
once_cell = "1.18"
[features]
default = []
[dev-dependencies]
tokio = { version = "1.29", features = ["full"] }
async-std = { version = "1.12", features = ["attributes"] }