-
Notifications
You must be signed in to change notification settings - Fork 56
/
Cargo.toml
38 lines (33 loc) · 953 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
[project]
edition = "2018"
name = "nanomsg"
version = "0.7.2"
authors = [
"Daniel Fagnan <dnfagnan@gmail.com>",
"Jason E. Aten",
"David C. Bishop",
"Dennis Lawler",
"Zachary Tong",
"Dan Burkert",
"Benoît Labaere <benoit.labaere@gmail.com>",
"Chip Collier"
]
description = "A high-level, Rust idiomatic wrapper around nanomsg."
homepage = "https://github.com/thehydroimpulse/nanomsg.rs"
documentation = "https://github.com/thehydroimpulse/nanomsg.rs"
repository = "https://github.com/thehydroimpulse/nanomsg.rs"
readme = "./README.md"
keywords = ["nanomsg", "binding", "network", "pub", "sub"]
categories = ["network-programming"]
license = "MIT"
[badges]
travis-ci = { repository = "blabaere/nanomsg.rs" }
appveyor = { repository = "blabaere/nanomsg.rs" }
[features]
bundled = ["nanomsg-sys/bundled"]
no_anl = ["nanomsg-sys/no_anl"]
[dependencies.nanomsg-sys]
path = "./nanomsg_sys"
version = "0.7.*"
[dependencies]
libc = "0.2.*"