artur 0.2.0

Universal config-driven Rust HTTP gateway and package orchestrator
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"
rust-version = "1.96"
name = "artur"
version = "0.2.0"
authors = ["Artur maintainers"]
build = false
include = [
    "src/**",
    "tests/**",
    "examples/**",
    "docs/**",
    ".github/workflows/**",
    "README.md",
    "LICENSE",
    "Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal config-driven Rust HTTP gateway and package orchestrator"
homepage = "https://github.com/melonask/artur"
documentation = "https://docs.rs/artur"
readme = "README.md"
keywords = [
    "http",
    "toml",
    "server",
    "orchestration",
    "gateway",
]
categories = [
    "command-line-utilities",
    "web-programming::http-server",
]
license = "MIT"
repository = "https://github.com/melonask/artur"

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

[[bin]]
name = "artur"
path = "src/main.rs"

[[test]]
name = "config_loader"
path = "tests/config_loader.rs"

[[test]]
name = "e2e_cli"
path = "tests/e2e_cli.rs"

[[test]]
name = "http_flow"
path = "tests/http_flow.rs"

[dependencies.anyhow]
version = "1.0.102"

[dependencies.axum]
version = "0.8.9"
features = [
    "macros",
    "json",
]

[dependencies.bytes]
version = "1.11.1"

[dependencies.clap]
version = "4.6.1"
features = [
    "derive",
    "env",
]

[dependencies.reqwest]
version = "0.13.4"
features = ["rustls"]
default-features = false

[dependencies.rusqlite]
version = "0.40.1"
features = ["bundled"]

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.128"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.tokio]
version = "1.52.3"
features = [
    "fs",
    "macros",
    "rt-multi-thread",
    "process",
    "signal",
    "time",
    "io-util",
]

[dependencies.toml]
version = "1.1.2"

[dependencies.tracing]
version = "0.1.40"

[dependencies.tracing-subscriber]
version = "0.3.20"
features = [
    "env-filter",
    "fmt",
]

[dependencies.uuid]
version = "1.21.0"
features = [
    "v4",
    "serde",
]

[dev-dependencies.http-body-util]
version = "0.1.3"

[dev-dependencies.tempfile]
version = "3.15.0"

[dev-dependencies.tower]
version = "0.5.2"
features = ["util"]

[lints.rust]
unused_must_use = "deny"