28 lines
695 B
TOML
28 lines
695 B
TOML
[package]
|
|
name = "stylance-cli"
|
|
edition = "2021"
|
|
authors.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
readme = "README.md"
|
|
description = "Cli tool for bundling stylance scoped CSS files."
|
|
|
|
[dependencies]
|
|
walkdir = "2.4.0"
|
|
stylance-core = { workspace = true }
|
|
clap = { version = "4.4.12", features = ["derive", "cargo"] }
|
|
anyhow = "1.0.79"
|
|
notify = { version = "6.1.1", default-features = false, features = [
|
|
"macos_kqueue",
|
|
] }
|
|
tokio = { version = "1.35.1", features = ["macros", "rt", "sync", "time"] }
|
|
tokio-stream = "0.1.14"
|
|
|
|
[[bin]]
|
|
name = "stylance"
|
|
path = "./src/main.rs"
|
|
doc = false
|