renet/Cargo.toml

26 lines
724 B
TOML

[package]
name = "smoltcp"
version = "0.1.0"
authors = ["whitequark <whitequark@whitequark.org>"]
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"]
license = "0BSD"
[dependencies]
byteorder = { version = "0.5", default-features = false }
log = { version = "0.3", optional = true }
libc = { version = "0.2.18", optional = true }
[dev-dependencies]
env_logger = "0.3"
[features]
use_std = ["libc"]
use_alloc = []
use_log = ["log"]
default = ["use_std", "use_log"]