surf-parse 0.1.0

Parser for the SurfDoc format — markdown superset with typed block directives
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 = "surf-parse"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for the SurfDoc format — markdown superset with typed block directives"
homepage = "https://surfcontext.org"
readme = "README.md"
keywords = [
    "surfdoc",
    "markdown",
    "parser",
    "document",
    "accessibility",
]
categories = [
    "parser-implementations",
    "text-processing",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/cloudsurf-software/surfcontext-cli"

[features]
default = ["terminal"]
terminal = ["colored"]

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

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

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

[dependencies.colored]
version = "3"
optional = true

[dependencies.pulldown-cmark]
version = "0.12"
features = ["html"]
default-features = false

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

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "2"

[dev-dependencies.pretty_assertions]
version = "1"

[dev-dependencies.proptest]
version = "1"