veltrix 0.3.0

General utilities
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 = "veltrix"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "General utilities"
homepage = "https://github.com/kitechsoftware/veltrix"
documentation = "https://docs.rs/veltrix"
readme = "README.md"
keywords = [
    "cli",
    "terminal",
    "prompt",
    "output",
    "markdown",
]
categories = ["command-line-interface"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kitechsoftware/veltrix"
resolver = "2"

[features]
async = ["tokio/process"]
caddy = [
    "async",
    "serde",
    "serde_json",
    "reqwest/json",
    "tokio/net",
    "tokio/io-util",
]
default = []
docker = [
    "serde",
    "serde_json",
]
docker-full = [
    "docker",
    "docker-socket",
]
docker-socket = [
    "docker",
    "async",
    "tokio/net",
    "tokio/io-util",
]
emojis = []
full = [
    "podman-full",
    "docker-full",
    "caddy",
    "systemd",
    "technitium",
    "unistd",
    "emojis",
]
podman = [
    "serde",
    "serde_json",
]
podman-full = [
    "podman",
    "podman-socket",
]
podman-socket = [
    "podman",
    "async",
    "tokio/net",
    "tokio/io-util",
]
systemd = []
technitium = [
    "async",
    "serde",
    "serde_json",
    "reqwest/json",
]
unistd = ["libc"]

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

[[example]]
name = "emojis_demo"
path = "examples/emojis_demo.rs"

[[example]]
name = "paths_demo"
path = "examples/paths_demo.rs"

[[example]]
name = "unistd_demo"
path = "examples/unistd_demo.rs"

[dependencies.libc]
version = "0.2"
optional = true

[dependencies.reqwest]
version = "0.12"
features = []
optional = true
default-features = true

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

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

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = []
optional = true