internet 0.0.2

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.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Network library for rust"
readme = "README.md"
keywords = ["network"]
categories = [
    "web-programming",
    "no-std",
]
license = "MIT OR Apache-2.0"

[features]
alloc = []
default = [
    "std",
    "http1_1",
    "http3",
    "quic",
    "quicv1",
    "quicv2",
    "ipv4",
    "ipv6",
    "icmpv4",
    "icmpv6",
    "transport",
]
http1_1 = []
http3 = ["quicv1"]
icmpv4 = ["ipv4"]
icmpv6 = ["ipv6"]
ip = []
ipv4 = ["ip"]
ipv6 = ["ip"]
quic = ["transport"]
quicv1 = ["quic"]
quicv2 = ["quicv1"]
std = ["alloc"]
transport = []

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