toolkit-zero 2.1.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 = "2.1.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."
homepage = "https://d33p0st.github.io/toolkit-zero/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/d33p0st/toolkit-zero.git"

[features]
backend-deps = []
default = []
location = ["location-native"]
location-native = [
    "socket-server",
    "dep:webbrowser",
    "dep:tokio",
    "tokio/rt",
    "tokio/sync",
    "dep:serde",
]
serialization = [
    "dep:bincode",
    "dep:base64",
]
socket = [
    "socket-server",
    "socket-client",
]
socket-client = [
    "serialization",
    "dep:reqwest",
    "reqwest/blocking",
    "reqwest/json",
    "reqwest/query",
    "dep:serde",
    "serde/derive",
    "dep:tokio",
    "tokio/rt",
    "dep:log",
]
socket-server = [
    "serialization",
    "dep:bytes",
    "dep:serde",
    "serde/derive",
    "dep:serde_urlencoded",
    "dep:warp",
    "warp/server",
    "dep:log",
    "dep:tokio",
    "tokio/rt",
    "tokio/net",
    "tokio/sync",
]

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

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.bincode]
version = "2"
optional = true

[dependencies.bytes]
version = "1"
optional = true

[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.serde_json]
version = "1"
optional = true

[dependencies.serde_urlencoded]
version = "0.7"
optional = true

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

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

[dependencies.webbrowser]
version = "0.8"
optional = true