katalyst 0.2.0

High performance, modular API Gateway
[tasks.deb]
description = "Create a debian package"
install_crate = "cargo-deb"
command = "cargo"
args = ["deb"]

[tasks.run]
description = "Run Katalyst"
command = "cargo"
args = ["run", "--", "-c", "../assets/manual-test.yml"]

[tasks.watch]
description = "Run Katalyst and watch for changes"
install_crate = "cargo-watch"
command = "cargo"
args = ["watch", "-x", "run -- -c ../assets/manual-test.yml"]

[tasks.build]
description = "Build the project"
command = "cargo"
args = ["build"]

[tasks.build-release]
description = "Build the project with optimizations"
command = "cargo"
args = ["build", "--release"]

[tasks.test]
description = "Run the unit tests"
command = "cargo"
args = ["test"]