1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- [package]
- name = "smoltcp"
- version = "0.5.0"
- authors = ["whitequark <[email protected]>"]
- 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"]
- categories = ["embedded"]
- license = "0BSD"
- # Each example should have an explicit `[[example]]` section here to
- # ensure that the correct features are enabled.
- autoexamples = false
- [dependencies]
- managed = { version = "0.7", default-features = false, features = ["map"] }
- byteorder = { version = "1.0", default-features = false }
- log = { version = "0.3", default-features = false, optional = true }
- libc = { version = "0.2.18", optional = true }
- bitflags = { version = "1.0", default-features = false }
- [dev-dependencies]
- env_logger = "0.4"
- getopts = "0.2"
- rand = "0.3"
- url = "1.0"
- [features]
- std = ["managed/std"]
- alloc = ["managed/alloc"]
- verbose = []
- "phy-raw_socket" = ["std", "libc"]
- "phy-tap_interface" = ["std", "libc"]
- "proto-ipv4" = []
- "proto-igmp" = ["proto-ipv4"]
- "proto-ipv6" = []
- "socket-raw" = []
- "socket-udp" = []
- "socket-tcp" = []
- "socket-icmp" = []
- "proto-dhcpv4" = ["proto-ipv4"]
- default = [
- "std", "log", # needed for `cargo test --no-default-features --features default` :/
- "phy-raw_socket", "phy-tap_interface",
- "proto-ipv4", "proto-igmp", "proto-ipv6",
- "socket-raw", "socket-icmp", "socket-udp", "socket-tcp"
- ]
- # experimental; do not use; no guarantees provided that this feature will be kept
- "rust-1_28" = []
- [[example]]
- name = "packet2pcap"
- path = "utils/packet2pcap.rs"
- required-features = ["std"]
- [[example]]
- name = "tcpdump"
- required-features = ["std", "phy-raw_socket", "proto-ipv4"]
- [[example]]
- name = "httpclient"
- required-features = ["std", "phy-tap_interface", "proto-ipv4", "proto-ipv6", "socket-tcp"]
- [[example]]
- name = "ping"
- required-features = ["std", "phy-tap_interface", "proto-ipv4", "proto-ipv6", "socket-icmp"]
- [[example]]
- name = "server"
- required-features = ["std", "phy-tap_interface", "proto-ipv4", "socket-tcp", "socket-udp"]
- [[example]]
- name = "client"
- required-features = ["std", "phy-tap_interface", "proto-ipv4", "socket-tcp", "socket-udp"]
- [[example]]
- name = "loopback"
- required-features = ["log", "proto-ipv4", "socket-tcp"]
- [[example]]
- name = "multicast"
- required-features = ["std", "phy-tap_interface", "proto-ipv4", "proto-igmp", "socket-udp"]
- [[example]]
- name = "benchmark"
- required-features = ["std", "phy-tap_interface", "proto-ipv4", "socket-raw", "socket-udp"]
- [profile.release]
- debug = 2
|