[package]
edition = "2024"
name = "prosaic-project"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Folder-of-files project format and bundler for Prosaic templates."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/wildmason/prosaic"
resolver = "2"
[lib]
name = "prosaic_project"
path = "src/lib.rs"
[[test]]
name = "into_engine"
path = "tests/into_engine.rs"
[[test]]
name = "load_project"
path = "tests/load_project.rs"
[[test]]
name = "save_template"
path = "tests/save_template.rs"
[[test]]
name = "scenario_runner"
path = "tests/scenario_runner.rs"
[[test]]
name = "stability_contract"
path = "tests/stability_contract.rs"
[[test]]
name = "style_profile_catalog"
path = "tests/style_profile_catalog.rs"
[[test]]
name = "validate_project"
path = "tests/validate_project.rs"
[dependencies.prosaic-core]
version = "1.0.1"
features = [
"std",
"serde",
]
default-features = false
[dependencies.prosaic-grammar-en]
version = "1.0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
features = ["preserve_order"]
[dev-dependencies.prosaic-grammar-de]
version = "1.0.1"
[dev-dependencies.prosaic-grammar-es]
version = "1.0.1"
[dev-dependencies.tempfile]
version = "3"