tcss-core 1.0.0

Core library for TCSS (Thematic CSS) - CSS with functions, variables, and expressions
Documentation
[[bench]]
harness = false
name = "benchmarks"
path = "benches/benchmarks.rs"

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

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.tempfile]
version = "3.8"

[[example]]
name = "errors"
path = "examples/errors.rs"

[[example]]
name = "execute"
path = "examples/execute.rs"

[[example]]
name = "generate"
path = "examples/generate.rs"

[[example]]
name = "parse"
path = "examples/parse.rs"

[[example]]
name = "tokenize"
path = "examples/tokenize.rs"

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

[package]
authors = ["TCSS Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming", "parser-implementations"]
description = "Core library for TCSS (Thematic CSS) - CSS with functions, variables, and expressions"
documentation = "https://docs.rs/tcss-core"
edition = "2021"
homepage = "https://github.com/tosiiko/TCSS"
keywords = ["css", "compiler", "preprocessor", "stylesheet"]
license = "MIT"
name = "tcss-core"
readme = "README.md"
repository = "https://github.com/tosiiko/TCSS"
version = "1.0.0"

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

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

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

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

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

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

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

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

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

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