internet 0.0.4

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.4"
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",
    "http2",
    "http3",
    "tls",
    "tls1_0",
    "tls1_1",
    "tls1_2",
    "tls1_3",
    "quic",
    "quicv1",
    "quicv2",
    "tcp",
    "udp",
    "ipv4",
    "ipv6",
    "icmpv4",
    "icmpv6",
    "transport",
]
http1_1 = []
http2 = []
http3 = ["quicv1"]
icmpv4 = ["ipv4"]
icmpv6 = ["ipv6"]
ip = []
ipv4 = ["ip"]
ipv6 = ["ip"]
quic = ["transport"]
quicv1 = ["quic"]
quicv2 = ["quicv1"]
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"]

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

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