[package]
edition = "2024"
rust-version = "1.85"
name = "aion-package"
version = "0.3.0"
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 = "MIT OR Apache-2.0"
repository = "https://github.com/tomWhiting/aion"
resolver = "2"
[features]
test-support = []
[lib]
name = "aion_package"
path = "src/lib.rs"
[[test]]
name = "builder"
path = "tests/builder.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"
[dependencies.aion-core]
version = "0.3.0"
[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"
[lints.clippy]
expect_used = "warn"
panic = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"