apimokka 0.1.1

Mock with mokka ☕️🌄 Visual mocking helper to handle API mock Server generating HTTP/JSON responses
[package]
name = "apimokka"
version = "0.1.1"
edition = "2021"

description = "Mock with mokka ☕️🌄 Visual mocking helper to handle API mock Server generating HTTP/JSON responses"
authors = ["nabbisen <nabbisen@scqr.net>"]
license = "Apache-2.0"

categories = ["web-programming", "development-tools", "command-line-utilities"]
keywords = ["https", "api", "mock", "testing"]
repository = "https://github.com/nabbisen/apimokka"
readme = "README.md"
rust-version = "1.78.0"

[profile.release]     # shrink executable size
opt-level = "z"
lto = true
panic = "abort"
strip = true
codegen-units = 1

[profile.dev]         # reasonably improve productivity
opt-level = 1         # slightly optimize
lto = false           # disable link-time optimizations
# strip = "debuginfo" # reduce size
incremental = true

[dependencies]
apimock = { version = "2", features = ["spawn"] }
fltk = { version = "1", features = ["fltk-bundled"] }
tokio = "1"