apate 0.1.2

API mocking server & rust unit tests library to mimic external 3rd party API endpoints
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 = "apate"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "API mocking server & rust unit tests library to mimic external 3rd party API endpoints"
homepage = "https://github.com/rustrum/apate"
readme = "README.md"
keywords = [
    "api",
    "rest",
    "mocking",
    "mockserver",
    "testing",
]
license-file = "LICENSE-TERMS"
repository = "https://github.com/rustrum/apate.git"

[features]
default = ["server"]
server = [
    "getopt3",
    "include_dir",
]

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

[[bin]]
name = "apate"
path = "src/main.rs"
required-features = ["server"]

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

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

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

[[test]]
name = "test-api"
path = "tests/test-api.rs"

[dependencies.actix-router]
version = "0.5"

[dependencies.actix-web]
version = "4.15"
features = ["rustls"]

[dependencies.async-lock]
version = "3.4"
features = ["std"]

[dependencies.base64]
version = "0.22"

[dependencies.color-eyre]
version = "0.6"

[dependencies.env_logger]
version = "0.11"

[dependencies.futures]
version = "0.3"
features = ["thread-pool"]

[dependencies.getopt3]
version = "2.5.0"
optional = true

[dependencies.hex]
version = "0.4"

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

[dependencies.jsonpath-rust]
version = "1.0"

[dependencies.log]
version = "0.4"

[dependencies.minijinja]
version = "2.12.0"
features = [
    "loader",
    "json",
]

[dependencies.rand]
version = "0.9"

[dependencies.rhai]
version = "1.26"
features = [
    "sync",
    "no_custom_syntax",
    "serde",
]

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_urlencoded]
version = "0.7"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.toml]
version = "1.1.4"

[dependencies.uuid]
version = "1.18"
features = ["v4"]

[dev-dependencies.include_dir]
version = "0.7"

[dev-dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "blocking",
]

[dev-dependencies.serial_test]
version = "3"