toolkit-zero 1.0.0

A feature-selective Rust utility toolkit — a growing collection of categorized utilities you can opt into via Cargo features, including only what you need.
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 = "toolkit-zero"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A feature-selective Rust utility toolkit — a growing collection of categorized utilities you can opt into via Cargo features, including only what you need."
readme = false
license = "MIT"

[features]
default = []
socket = [
    "socket-server",
    "socket-client",
]
socket-client = [
    "dep:reqwest",
    "reqwest/blocking",
    "reqwest/json",
    "reqwest/query",
    "dep:serde",
    "serde/derive",
    "dep:log",
]
socket-server = [
    "dep:reqwest",
    "dep:serde",
    "dep:warp",
    "warp/server",
    "dep:log",
    "dep:tokio",
    "tokio/rt",
]

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

[dependencies.log]
version = "0.4.29"
optional = true

[dependencies.reqwest]
version = "0.13.2"
features = [
    "blocking",
    "json",
    "query",
]
optional = true

[dependencies.serde]
version = "1.0.228"
optional = true

[dependencies.tokio]
version = "1.50.0"
features = ["rt"]
optional = true

[dependencies.warp]
version = "0.4.2"
optional = true