mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
Bump versions
This commit is contained in:
parent
e6191447fe
commit
c475ab7f92
@ -17,12 +17,12 @@ concurrent = ["swc_common/concurrent", "dashmap", "rayon"]
|
||||
[dependencies]
|
||||
swc_atoms = { version = "0.2", path = "../atoms" }
|
||||
swc_common = { version = "0.9", path = "../common" }
|
||||
swc_ecma_ast = { version = "0.28", path = "../ecmascript/ast" }
|
||||
swc_ecma_ast = { version = "0.29.0", path = "../ecmascript/ast" }
|
||||
swc_ecma_codegen = { version = "0.33.0", path = "../ecmascript/codegen" }
|
||||
swc_ecma_parser = { version = "0.35.0", path = "../ecmascript/parser" }
|
||||
swc_ecma_transforms = { version = "0.21.0", path = "../ecmascript/transforms" }
|
||||
swc_ecma_utils = { version = "0.18.0", path = "../ecmascript/utils" }
|
||||
swc_ecma_visit = { version = "0.14.0", path = "../ecmascript/visit" }
|
||||
swc_ecma_utils = { version = "0.19.0", path = "../ecmascript/utils" }
|
||||
swc_ecma_visit = { version = "0.15.0", path = "../ecmascript/visit" }
|
||||
anyhow = "1"
|
||||
crc = "1.8"
|
||||
radix_fmt = "1"
|
||||
|
@ -16,11 +16,11 @@ transforms = ["swc_ecma_transforms"]
|
||||
visit = ["swc_ecma_visit"]
|
||||
|
||||
[dependencies]
|
||||
swc_ecma_ast = { version = "0.28.0", path ="./ast" }
|
||||
swc_ecma_ast = { version = "0.29.0", path ="./ast" }
|
||||
swc_ecma_codegen = { version = "0.33.0", path ="./codegen", optional = true }
|
||||
swc_ecma_parser = { version = "0.35.0", path ="./parser", optional = true }
|
||||
swc_ecma_utils = { version = "0.18.0", path ="./utils", optional = true }
|
||||
swc_ecma_utils = { version = "0.19.0", path ="./utils", optional = true }
|
||||
swc_ecma_transforms = { version = "0.21.0", path ="./transforms", optional = true }
|
||||
swc_ecma_visit = { version = "0.14.0", path ="./visit", optional = true }
|
||||
swc_ecma_visit = { version = "0.15.0", path ="./visit", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "swc_ecma_ast"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
||||
license = "Apache-2.0/MIT"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
|
@ -13,7 +13,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
bitflags = "1"
|
||||
swc_atoms = { version = "0.2", path ="../../atoms" }
|
||||
swc_common = { version = "0.9.0", path ="../../common" }
|
||||
swc_ecma_ast = { version = "0.28.0", path ="../ast" }
|
||||
swc_ecma_ast = { version = "0.29.0", path ="../ast" }
|
||||
swc_ecma_codegen_macros = { version = "0.5", path ="./macros" }
|
||||
sourcemap = "6"
|
||||
num-bigint = { version = "0.2", features = ["serde"] }
|
||||
|
@ -16,7 +16,7 @@ nom = "5.1.2"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
||||
[dev-dependencies]
|
||||
swc_ecma_ast = { version = "0.28.0", path = "../ast" }
|
||||
swc_ecma_ast = { version = "0.29.0", path = "../ast" }
|
||||
swc_ecma_parser = { version = "0.35.0", path = "../parser" }
|
||||
testing = { version = "0.9.0", path = "../../testing" }
|
||||
anyhow = "1"
|
||||
|
@ -15,9 +15,9 @@ default = []
|
||||
[dependencies]
|
||||
swc_atoms = { version = "0.2", path ="../../atoms" }
|
||||
swc_common = { version = "0.9.0", path ="../../common" }
|
||||
swc_ecma_ast = { version = "0.28.0", path ="../ast" }
|
||||
swc_ecma_ast = { version = "0.29.0", path ="../ast" }
|
||||
swc_ecma_parser_macros = { version = "0.4.1", path ="./macros" }
|
||||
swc_ecma_visit = { version = "0.14.0", path ="../visit" }
|
||||
swc_ecma_visit = { version = "0.15.0", path ="../visit" }
|
||||
enum_kind = { version = "0.2", path ="../../macros/enum_kind" }
|
||||
unicode-xid = "0.2"
|
||||
log = "0.4"
|
||||
|
@ -17,10 +17,10 @@ default = []
|
||||
jsdoc = { version = "0.3.0", path ="../jsdoc" }
|
||||
swc_atoms = { version = "0.2.0", path ="../../atoms" }
|
||||
swc_common = { version = "0.9.0", path ="../../common" }
|
||||
swc_ecma_ast = { version = "0.28.0", path ="../ast" }
|
||||
swc_ecma_utils = { version = "0.18.0", path ="../utils" }
|
||||
swc_ecma_ast = { version = "0.29.0", path ="../ast" }
|
||||
swc_ecma_utils = { version = "0.19.0", path ="../utils" }
|
||||
swc_ecma_parser = { version = "0.35.0", path ="../parser" }
|
||||
swc_ecma_visit = { version = "0.14.0", path ="../visit" }
|
||||
swc_ecma_visit = { version = "0.15.0", path ="../visit" }
|
||||
dashmap = { version = "3", optional = true }
|
||||
either = "1.5"
|
||||
fxhash = "0.2"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "swc_ecma_utils"
|
||||
version = "0.18.0"
|
||||
version = "0.19.0"
|
||||
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
||||
license = "Apache-2.0/MIT"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
@ -11,10 +11,10 @@ edition = "2018"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
swc_ecma_ast = { version = "0.28.0", path ="../ast" }
|
||||
swc_ecma_ast = { version = "0.29.0", path ="../ast" }
|
||||
swc_atoms = { version = "0.2.0", path ="../../atoms" }
|
||||
swc_common = { version = "0.9.0", path ="../../common" }
|
||||
swc_ecma_visit = { version = "0.14.0", path ="../visit" }
|
||||
swc_ecma_visit = { version = "0.15.0", path ="../visit" }
|
||||
once_cell = "1"
|
||||
scoped-tls = "1"
|
||||
unicode-xid = "0.2"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "swc_ecma_visit"
|
||||
version = "0.14.0"
|
||||
version = "0.15.0"
|
||||
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
||||
license = "Apache-2.0/MIT"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
@ -12,6 +12,6 @@ edition = "2018"
|
||||
[dependencies]
|
||||
swc_atoms = { version = "0.2", path = "../../atoms" }
|
||||
swc_common = { version = "0.9.0", path = "../../common" }
|
||||
swc_ecma_ast = { version = "0.28.0", path ="../ast" }
|
||||
swc_ecma_ast = { version = "0.29.0", path ="../ast" }
|
||||
swc_visit = { version = "0.1", path ="../../visit" }
|
||||
num-bigint = { version = "0.2", features = ["serde"] }
|
||||
|
Loading…
Reference in New Issue
Block a user