iocaine/Cargo.toml
Gergely Nagy 5d60b84300
Make the generated HTML templatable
Use Handlebars to generate the HTML output, to make it easier to change.

Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
2025-01-28 08:50:22 +01:00

47 lines
1.4 KiB
TOML

## SPDX-FileCopyrightText: 2025 Gergely Nagy
## SPDX-FileContributor: Gergely Nagy
##
## SPDX-License-Identifier: MIT
[package]
name = "iocaine"
version = "0.1.0-snapshot"
description = "The deadliest poison known to AI"
license = "MIT"
homepage = "https://iocaine.madhouse-project.org/"
repository = "https://git.madhouse-project.org/algernon/iocaine"
edition = "2021"
[dependencies]
anyhow = "1.0.94"
axum = "0.8.1"
clap = { version = "4.5.23", features = ["derive"] }
console-subscriber = { version = "0.4.1", optional = true }
figment = { version = "0.10.19", features = ["toml", "env"] }
figment_file_provider_adapter = "0.1.1"
handlebars = { version = "6.3.0", features = ["dir_source", "rust-embed"] }
rand = "0.8.5"
rand_chacha = "0.3.1"
rust-embed = "8.5.0"
serde = { version = "1.0.217", features = ["derive"] }
sha2 = "0.10.8"
tokio = { version = "1.42.0", features = [
"rt-multi-thread",
"macros",
"signal",
] }
tower-http = { version = "0.6.2", features = ["trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }
[features]
tokio-console = ["dep:console-subscriber", "tokio/tracing"]
[profile.release]
strip = true
panic = "abort"
lto = true
codegen-units = 1
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }