[package]
edition = "2021"
name = "dioxuscut-cli"
version = "0.1.3"
authors = ["Dioxuscut Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for rendering Dioxuscut compositions headlessly"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/sjkim1127/Dioxuscut"
[features]
default = []
gpu = ["dioxuscut-rasterizer/gpu"]
rhai = ["dep:rhai"]
[lib]
name = "dioxuscut_cli"
path = "src/lib.rs"
[[bin]]
name = "dioxuscut"
path = "src/main.rs"
[[test]]
name = "native_media_integration"
path = "tests/native_media_integration.rs"
[[test]]
name = "render_formats_integration"
path = "tests/render_formats_integration.rs"
[[test]]
name = "rhai_render_integration"
path = "tests/rhai_render_integration.rs"
[[test]]
name = "tier1_feature_coverage"
path = "tests/tier1_feature_coverage.rs"
[[test]]
name = "tier2_boundary_cases"
path = "tests/tier2_boundary_cases.rs"
[[test]]
name = "tier3_subsystem_integration"
path = "tests/tier3_subsystem_integration.rs"
[[test]]
name = "tier4_acceptance_scenario"
path = "tests/tier4_acceptance_scenario.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.dioxuscut-composition]
version = "0.1.2"
[dependencies.dioxuscut-rasterizer]
version = "0.1.2"
[dependencies.rhai]
version = "1.25"
features = [
"serde",
"sync",
]
optional = true
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.dioxuscut-renderer]
version = "0.1.2"
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]