[package]
edition = "2021"
rust-version = "1.85"
name = "aura-lang"
version = "0.1.0"
authors = [
"Ilya Brin",
"Aura contributors",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Aura configuration language: deterministic, capability-secured, schema-validated configs — embeddable library + the `aura` CLI"
homepage = "https://github.com/aura-config/aura-lang"
readme = "README.md"
keywords = [
"configuration",
"config",
"language",
"deterministic",
"cli",
]
categories = [
"config",
"parser-implementations",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aura-config/aura-lang"
[features]
cli = [
"dep:ariadne",
"dep:clap",
"dep:ureq",
]
default = ["cli"]
[lib]
name = "aura_lang"
path = "src/lib.rs"
[[bin]]
name = "aura"
path = "src/main.rs"
required-features = ["cli"]
[[test]]
name = "agent_reference"
path = "tests/agent_reference.rs"
[[test]]
name = "analysis_manifest"
path = "tests/analysis_manifest.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "diagnostic_catalogue"
path = "tests/diagnostic_catalogue.rs"
[[test]]
name = "docs_snippets"
path = "tests/docs_snippets.rs"
[[test]]
name = "editor_grammars"
path = "tests/editor_grammars.rs"
[[test]]
name = "eval_manifest"
path = "tests/eval_manifest.rs"
[[test]]
name = "facade_api"
path = "tests/facade_api.rs"
[[test]]
name = "lexer_manifest"
path = "tests/lexer_manifest.rs"
[[test]]
name = "lexer_prop"
path = "tests/lexer_prop.rs"
[[test]]
name = "parser_manifest"
path = "tests/parser_manifest.rs"
[[test]]
name = "playground_examples"
path = "tests/playground_examples.rs"
[[test]]
name = "serialize_json"
path = "tests/serialize_json.rs"
[[test]]
name = "vfs_modules"
path = "tests/vfs_modules.rs"
[[bench]]
name = "eval"
path = "benches/eval.rs"
harness = false
[[bench]]
name = "lexer"
path = "benches/lexer.rs"
harness = false
[[bench]]
name = "parser"
path = "benches/parser.rs"
harness = false
[[bench]]
name = "resolve"
path = "benches/resolve.rs"
harness = false
[dependencies.ariadne]
version = "0.6"
optional = true
[dependencies.clap]
version = "4"
features = [
"derive",
"string",
]
optional = true
[dependencies.indexmap]
version = "2"
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.sha2]
version = "0.11"
[dependencies.toml]
version = "1"
[dependencies.ureq]
version = "3"
optional = true
[dependencies.yaml-rust2]
version = "0.11"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.proptest]
version = "1"