mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
0d63470eba
swc_css_ast: - Rename `Values` to `SpaceValues`. swc_css_parser: - Add `parse_str`. - Make `ErrorKind` `#[non_exhaustive]`. - Fix span. swc_css_visit: - Create visitors.
15 lines
451 B
TOML
15 lines
451 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "CSS apis for rust"
|
|
documentation = "https://rustdoc.swc.rs/swc_css/"
|
|
edition = "2018"
|
|
license = "Apache-2.0/MIT"
|
|
name = "swc_css"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.2.0"
|
|
|
|
[dependencies]
|
|
swc_css_ast = {path = "./ast", version = "0.2.0"}
|
|
swc_css_parser = {path = "./parser", version = "0.2.0"}
|
|
swc_css_visit = {path = "./visit", version = "0.1.0"}
|