[package]
edition = "2024"
rust-version = "1.89"
name = "aion-toolchain"
version = "0.31.0"
authors = ["Tom Whiting <tom@ablative.com.au>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Server-side Gleam authoring toolchain: shells out to the gleam binary to compile and type-check workflow source, then packages a verified .aion. Embeds no compiler."
documentation = "https://docs.rs/aion-toolchain"
readme = "README.md"
keywords = [
"aion",
"workflow",
"gleam",
"authoring",
"toolchain",
]
categories = ["development-tools"]
license = "AGPL-3.0-only"
repository = "https://github.com/ablative-io/aion"
resolver = "2"
[lib]
name = "aion_toolchain"
path = "src/lib.rs"
[[test]]
name = "document_entry_e2e"
path = "tests/document_entry_e2e.rs"
[[test]]
name = "no_embedded_compiler"
path = "tests/no_embedded_compiler.rs"
[[test]]
name = "toolchain_e2e"
path = "tests/toolchain_e2e.rs"
[dependencies.aion-package]
version = "0.31.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.tempfile]
version = "3.27.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "1.1"
[lints.clippy]
expect_used = "deny"
panic = "deny"
todo = "warn"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"