[package]
edition = "2021"
name = "payload-loader"
version = "0.1.0"
authors = ["loader contributors <dev@loader.local>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Production-ready Rust loader with cryptography, configuration, and security features"
homepage = "https://github.com/chhaynee/loader"
readme = "README.md"
keywords = [
"crypto",
"loader",
"transport",
"security",
]
categories = [
"cryptography",
"development-tools",
]
license = "MIT"
repository = "https://github.com/chhaynee/loader"
[lib]
name = "loader"
path = "src/lib.rs"
[[bin]]
name = "loader"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.mal_dev_core]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"fs",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"env-filter",
]
[dev-dependencies.criterion]
version = "0.5"