renet/Cargo.toml

21 lines
441 B
TOML
Raw Normal View History

2016-12-10 17:23:40 +08:00
[package]
name = "smoltcp"
version = "0.1.0"
authors = ["whitequark <whitequark@whitequark.org>"]
license = "0BSD"
readme-file = "README.md"
2016-12-10 17:23:40 +08:00
[dependencies]
byteorder = { version = "0.5", default-features = false }
2016-12-23 15:59:38 +08:00
log = { version = "0.3", optional = true }
libc = { version = "0.2.18", optional = true }
2016-12-23 15:59:38 +08:00
[dev-dependencies]
env_logger = "0.3"
[features]
use_std = ["libc"]
2016-12-28 07:49:37 +08:00
use_alloc = []
use_log = ["log"]
default = ["use_std", "use_log"]