maml 0.1.0

A parser and serializer for MAML (Minimal Abstract Markup Language)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "maml"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A parser and serializer for MAML (Minimal Abstract Markup Language)"
homepage = "https://maml.dev"
documentation = "https://docs.rs/maml"
readme = "README.md"
keywords = [
    "maml",
    "parser",
    "serializer",
    "config",
    "markup",
]
categories = [
    "config",
    "encoding",
    "parser-implementations",
]
license = "MIT"
repository = "https://github.com/maml-dev/maml-rs"

[features]
default = ["serde"]
serde = ["dep:serde"]

[lib]
name = "maml"
path = "src/lib.rs"

[[test]]
name = "error_tests"
path = "tests/error_tests.rs"

[[test]]
name = "parse_tests"
path = "tests/parse_tests.rs"

[[test]]
name = "serde_tests"
path = "tests/serde_tests.rs"
required-features = ["serde"]

[dependencies.serde]
version = "1"
optional = true

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1"
features = ["preserve_order"]