[package]
edition = "2024"
rust-version = "1.89"
name = "avatara"
version = "1.0.1"
build = false
exclude = [
".claude/",
".github/",
"docs/",
"scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Avatara — divine archetype engine: theological and mythological personality mapping across traditions"
homepage = "https://github.com/MacCracken/avatara"
documentation = "https://docs.rs/avatara"
readme = "README.md"
keywords = [
"archetype",
"mythology",
"theology",
"personality",
"divinity",
]
categories = [
"science",
"simulation",
]
license = "GPL-3.0-only"
repository = "https://github.com/MacCracken/avatara"
[features]
default = ["std"]
logging = [
"std",
"dep:tracing-subscriber",
]
std = [
"serde/std",
"thiserror/std",
]
[lib]
name = "avatara"
path = "src/lib.rs"
[[example]]
name = "compose"
path = "examples/compose.rs"
[[example]]
name = "traditions"
path = "examples/traditions.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.serde]
version = "1"
features = [
"derive",
"alloc",
]
default-features = false
[dependencies.thiserror]
version = "2"
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
optional = true
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.serde_json]
version = "1"