Skip to content

Commit

Permalink
dep
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Dec 12, 2022
1 parent f8d8bf8 commit a7c76e1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 19 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 20 additions & 19 deletions crates/swc_css_compat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Port of stylis"
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Port of stylis"
documentation = "https://rustdoc.swc.rs/swc_css_compat/"
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.15.0"
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.15.0"

[lib]
bench = false

[dependencies]
once_cell = "1.10.0"
serde = {version = "1.0.118", features = ["derive"]}
serde_json = "1.0.61"
swc_atoms = {version = "0.4.25", path = "../swc_atoms"}
swc_common = {version = "0.29.19", path = "../swc_common"}
swc_css_ast = {version = "0.130.0", path = "../swc_css_ast"}
swc_css_utils = {version = "0.127.0", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.129.0", path = "../swc_css_visit"}
bitflags = "1.3.2"
once_cell = "1.10.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
swc_atoms = { version = "0.4.25", path = "../swc_atoms" }
swc_common = { version = "0.29.19", path = "../swc_common" }
swc_css_ast = { version = "0.130.0", path = "../swc_css_ast" }
swc_css_utils = { version = "0.127.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.129.0", path = "../swc_css_visit" }

[dev-dependencies]
swc_css_codegen = {version = "0.140.0", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.139.0", path = "../swc_css_parser"}
testing = {version = "0.31.20", path = "../testing"}
swc_css_codegen = { version = "0.140.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.139.0", path = "../swc_css_parser" }
testing = { version = "0.31.20", path = "../testing" }

0 comments on commit a7c76e1

Please sign in to comment.