[package]
edition = "2024"
rust-version = "1.93"
name = "stratosphere-core"
version = "0.1.0"
build = false
exclude = ["update-model-file.sh"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and utilities for stratosphere - a type-safe CloudFormation template generation library"
homepage = "https://github.com/mbj/mrs/tree/main/stratosphere-core"
readme = "README.md"
keywords = [
"aws",
"cloudformation",
"infrastructure",
"template",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/mbj/mrs/tree/main/stratosphere-core"
[lib]
name = "stratosphere_core"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.nom]
version = "8"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = [
"arbitrary_precision",
"indexmap",
]
[dependencies.serde_path_to_error]
version = "0.1"
[dependencies.strum]
version = "0.27"
features = ["derive"]
[dependencies.syn]
version = "2"
features = ["derive"]
[lints.clippy]
multiple_crate_versions = "deny"
must_use_candidate = "deny"
uninlined_format_args = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
unexpected_cfgs = "deny"