-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (20 loc) · 850 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
[package]
name = "udplite"
version = "0.1.0"
description = "An idiomatic UDP-Lite wrapper, with optional mio integration"
readme = "README.md"
repository = "https://github.com/tormol/udplite"
license = "Apache-2.0 / MIT"
authors = ["Torbjørn Birch Moltu <t.b.moltu@lyse.net>"]
categories = ["network-programming", "asynchronous", "os::unix-apis"]
edition = "2018"
[target.'cfg(any(target_os="linux", target_os="freebsd", target_os="android"))'.dependencies]
libc = "0.2.59"
[dependencies] # optional dependencies must be present for the feature names to exist
# 0.6.13 drags in libc 0.1 when built with -Z minimal-versions
mio_06 = {package="mio", version="0.6.14", optional=true}
mio_07 = {package="mio", version="0.7.0", optional=true, features=["os-util"]}
[lib]
path = "udplite.rs"
[package.metadata.docs.rs]
features = ["mio_06", "mio_07"]