[package]
edition = "2021"
rust-version = "1.80"
name = "arkhe-forge"
version = "0.13.0"
authors = ["Arkhe Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ArkheForge Runtime umbrella crate: re-exports arkhe-forge-core (L1 primitives) + arkhe-forge-platform (L2 services). Shell authors depend on this crate only; compliance-tier features proxy through to the platform crate."
homepage = "https://github.com/aceamro/ArkheForge"
documentation = "https://docs.rs/arkhe-forge"
readme = "README.md"
keywords = [
"runtime",
"arkhe",
"activitypub",
"ecs",
"deterministic",
]
categories = [
"data-structures",
"database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aceamro/ArkheForge"
[features]
default = []
tier-1-kms = ["arkhe-forge-platform/tier-1-kms"]
tier-2-aws-kms = ["arkhe-forge-platform/tier-2-aws-kms"]
tier-2-hook-host-v2 = ["arkhe-forge-platform/tier-2-hook-host-v2"]
tier-2-multi-kms = ["arkhe-forge-platform/tier-2-multi-kms"]
tier-2-observer-host-v2 = ["arkhe-forge-platform/tier-2-observer-host-v2"]
[lib]
name = "arkhe_forge"
path = "src/lib.rs"
[dependencies.arkhe-forge-core]
version = "0.13"
[dependencies.arkhe-forge-platform]
version = "0.13"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"