internet 0.1.0

Network library for rust
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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "internet"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Network library for rust"
readme = "README.md"
keywords = [
    "ip",
    "tcp",
    "udp",
    "network",
    "ipv6",
]
categories = [
    "network-programming",
    "web-programming",
    "parser-implementations",
    "no-std",
    "no-std::no-alloc",
]
license = "MIT OR Apache-2.0"

[features]
alloc = []
arp = [
    "ipv4",
    "ethernet",
]
default = [
    "std",
    "stack",
]
dhcpv4 = ["udp"]
dhcpv6 = ["udp"]
ethernet = []
http1_1 = []
http2 = []
http3 = ["quicv1"]
icmpv4 = ["ipv4"]
icmpv6 = ["ipv6"]
igmp = []
igmpv1 = ["ipv4"]
igmpv2 = ["ipv4"]
igmpv3 = ["ipv4"]
ip = []
ipv4 = ["ip"]
ipv6 = ["ip"]
mld = ["ipv6"]
ndp = ["ipv6"]
quic = ["udp"]
quicv1 = ["quic"]
quicv2 = ["quicv1"]
slaac = ["ipv6"]
stack = [
    "http1_1",
    "http2",
    "http3",
    "dhcpv4",
    "dhcpv6",
    "tls",
    "tls1_0",
    "tls1_1",
    "tls1_2",
    "tls1_3",
    "quic",
    "quicv1",
    "quicv2",
    "udp",
    "tcp",
    "transport",
    "igmp",
    "igmpv1",
    "igmpv2",
    "igmpv3",
    "ndp",
    "mld",
    "slaac",
    "icmpv4",
    "icmpv6",
    "ip",
    "ipv4",
    "ipv6",
    "arp",
    "vlan",
    "ethernet",
]
std = ["alloc"]
tcp = ["transport"]
tls = ["tcp"]
tls1_0 = ["tls"]
tls1_1 = [
    "tls1_0",
    "dep:ring",
]
tls1_2 = ["tls1_1"]
tls1_3 = ["tls1_2"]
transport = []
udp = ["transport"]
vlan = []

[lib]
name = "internet"
path = "src/lib.rs"

[dependencies.ring]
version = "0.17.14"
optional = true