apate 0.0.8

API mocking server & rust unit tests library to mimic external 3rd party API endpoints
Documentation
[[bin]]
name = "apate"
path = "src/main.rs"
required-features = ["server"]

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

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

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

[dependencies.base64]
version = "0.22"

[dependencies.cityhasher]
version = "0.1"

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

[dependencies.env_logger]
version = "0.11"

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

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

[dependencies.hex]
version = "0.4"

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

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

[dependencies.log]
version = "0.4"

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

[dependencies.rand]
version = "0.9"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_urlencoded]
version = "0.7"

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

[dependencies.toml]
version = "0.9"

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

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

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

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

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

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

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

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

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