smoltcp 0.4.0

A TCP/IP stack designed for bare-metal, real-time systems without a heap.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "smoltcp"
version = "0.4.0"
authors = ["whitequark <whitequark@whitequark.org>"]
description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."
homepage = "https://github.com/m-labs/smoltcp"
documentation = "https://docs.rs/smoltcp/"
readme = "README.md"
keywords = ["ip", "tcp", "udp", "ethernet", "network"]
categories = ["embedded"]
license = "0BSD"
repository = "https://github.com/m-labs/smoltcp.git"

[[example]]
name = "tcpdump"

[[example]]
name = "server"

[[example]]
name = "client"

[[example]]
name = "ping"

[[example]]
name = "loopback"
[dependencies.log]
version = "0.3"
optional = true
default-features = false

[dependencies.libc]
version = "0.2.18"
optional = true

[dependencies.managed]
version = "0.4.0"
default-features = false

[dependencies.byteorder]
version = "1.0"
default-features = false
[dev-dependencies.getopts]
version = "0.2"

[dev-dependencies.log]
version = "0.3"

[dev-dependencies.env_logger]
version = "0.4"

[features]
tap_interface = ["libc"]
alloc = ["managed/alloc"]
raw_socket = ["libc"]
default = ["std", "raw_socket", "tap_interface", "log", "verbose"]
std = ["managed/std"]
verbose = []