renet/Cargo.toml

42 lines
1.1 KiB
TOML
Raw Normal View History

2016-12-10 17:23:40 +08:00
[package]
name = "smoltcp"
version = "0.4.0-pre"
2016-12-10 17:23:40 +08:00
authors = ["whitequark <whitequark@whitequark.org>"]
2016-12-28 08:21:01 +08:00
description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."
documentation = "https://docs.rs/smoltcp/"
homepage = "https://github.com/m-labs/smoltcp"
repository = "https://github.com/m-labs/smoltcp.git"
readme = "README.md"
keywords = ["ip", "tcp", "udp", "ethernet", "network"]
2017-03-05 13:49:53 +08:00
categories = ["embedded"]
license = "0BSD"
2016-12-10 17:23:40 +08:00
[dependencies]
2016-12-31 06:28:11 +08:00
byteorder = { version = "1.0", default-features = false }
managed = { version = "0.3.0", default-features = false }
log = { version = "0.3", default-features = false, optional = true }
libc = { version = "0.2.18", optional = true }
2016-12-23 15:59:38 +08:00
[dev-dependencies]
2017-01-31 19:32:53 +08:00
log = "0.3"
2017-01-24 01:27:53 +08:00
env_logger = "0.4"
2016-12-31 09:04:39 +08:00
getopts = "0.2"
2016-12-23 15:59:38 +08:00
[features]
std = ["managed/std"]
alloc = ["managed/alloc"]
collections = ["managed/collections"]
verbose = []
raw_socket = ["libc"]
tap_interface = ["libc"]
default = ["std", "raw_socket", "tap_interface", "log", "verbose"]
2017-03-05 12:19:19 +08:00
[[example]]
name = "tcpdump"
[[example]]
name = "server"
2017-03-05 12:47:45 +08:00
[[example]]
name = "client"