[[bin]]
name = "tcss"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
features = ["derive", "cargo"]
version = "4.4"
[dependencies.colored]
version = "2.1"
[dependencies.notify]
version = "6.1"
[dependencies.tcss-core]
version = "1.0.0"
[dev-dependencies.tempfile]
version = "3.8"
[lib]
name = "tcss_cli"
path = "src/lib.rs"
[package]
authors = ["TCSS Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "web-programming"]
description = "Command-line interface for TCSS (Thematic CSS) compiler"
edition = "2021"
homepage = "https://github.com/tosiiko/TCSS"
keywords = ["css", "compiler", "cli", "preprocessor"]
license = "MIT"
name = "tcss-cli"
readme = "README.md"
repository = "https://github.com/tosiiko/TCSS"
version = "1.0.0"
[[test]]
name = "check_tests"
path = "tests/check_tests.rs"
[[test]]
name = "cli_e2e_tests"
path = "tests/cli_e2e_tests.rs"
[[test]]
name = "compile_tests"
path = "tests/compile_tests.rs"
[[test]]
name = "error_handling_tests"
path = "tests/error_handling_tests.rs"
[[test]]
name = "help_version_tests"
path = "tests/help_version_tests.rs"
[[test]]
name = "init_tests"
path = "tests/init_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "verbose_debug_tests"
path = "tests/verbose_debug_tests.rs"