[package]
edition = "2024"
rust-version = "1.85"
name = "aion-package"
version = "0.9.2"
authors = ["Tom Whiting <tom@ablative.com.au>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Archive validation, content hashing, and namespacing for Aion workflow packages."
documentation = "https://docs.rs/aion-package"
readme = "README.md"
keywords = [
"aion",
"workflow",
"durable-execution",
"package",
"archive",
]
categories = ["development-tools"]
license = "AGPL-3.0-only"
repository = "https://github.com/ablative-io/aion"
resolver = "2"
[features]
test-support = []
[lib]
name = "aion_package"
path = "src/lib.rs"
[[test]]
name = "builder"
path = "tests/builder.rs"
[[test]]
name = "golden_gleam_exec"
path = "tests/golden_gleam_exec.rs"
[[test]]
name = "package"
path = "tests/package.rs"
[[test]]
name = "package_project_hello_world"
path = "tests/package_project_hello_world.rs"
[[test]]
name = "project_determinism"
path = "tests/project_determinism.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "rust_worker_build"
path = "tests/rust_worker_build.rs"
[[test]]
name = "schema_equivalence"
path = "tests/schema_equivalence.rs"
[dependencies.aion-core]
version = "0.9.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "1.1"
[dependencies.zip]
version = "8.6"
[dev-dependencies.tempfile]
version = "3.27.0"
[dev-dependencies.tracing]
version = "0.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"