build(swc_core): Bump up rkyv (#5507)

This commit is contained in:
OJ Kwon 2022-08-15 23:33:14 -07:00 committed by GitHub
parent 787f7636ef
commit becc3aebf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 26 additions and 26 deletions

20
Cargo.lock generated
View File

@ -2356,9 +2356,9 @@ checksum = "11000e6ba5020e53e7cc26f73b91ae7d5496b4977851479edb66b694c0675c21"
[[package]]
name = "rkyv"
version = "0.7.37"
version = "0.7.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f08c8062c1fe1253064043b8fc07bfea1b9702b71b4a86c11ea3588183b12e1"
checksum = "cec2b3485b07d96ddfd3134767b8a447b45ea4eb91448d0a35180ec0ffd5ed15"
dependencies = [
"bytecheck",
"hashbrown 0.12.0",
@ -2370,9 +2370,9 @@ dependencies = [
[[package]]
name = "rkyv_derive"
version = "0.7.37"
version = "0.7.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e289706df51226e84814bf6ba1a9e1013112ae29bc7a9878f73fce360520c403"
checksum = "6eaedadc88b53e36dd32d940ed21ae4d850d5916f2581526921f553a72ac34c4"
dependencies = [
"proc-macro2",
"quote",
@ -2893,7 +2893,7 @@ dependencies = [
[[package]]
name = "swc_atoms"
version = "0.4.5"
version = "0.4.6"
dependencies = [
"bytecheck",
"once_cell",
@ -2964,7 +2964,7 @@ dependencies = [
[[package]]
name = "swc_common"
version = "0.27.8"
version = "0.27.9"
dependencies = [
"ahash",
"anyhow",
@ -3065,7 +3065,7 @@ dependencies = [
[[package]]
name = "swc_css_ast"
version = "0.107.0"
version = "0.107.1"
dependencies = [
"bytecheck",
"is-macro",
@ -3199,7 +3199,7 @@ dependencies = [
[[package]]
name = "swc_ecma_ast"
version = "0.90.7"
version = "0.90.8"
dependencies = [
"arbitrary",
"bitflags",
@ -3851,7 +3851,7 @@ dependencies = [
[[package]]
name = "swc_html_ast"
version = "0.24.4"
version = "0.24.5"
dependencies = [
"bytecheck",
"is-macro",
@ -4043,7 +4043,7 @@ dependencies = [
[[package]]
name = "swc_plugin_proxy"
version = "0.18.7"
version = "0.18.8"
dependencies = [
"better_scoped_tls",
"bytecheck",

View File

@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_atoms"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.5"
version = "0.4.6"
[lib]
bench = false
@ -18,7 +18,7 @@ rkyv-impl = ["rkyv", "bytecheck"]
[dependencies]
bytecheck = { version = "0.6.9", optional = true }
once_cell = "1"
rkyv = { version = "=0.7.37", optional = true }
rkyv = { version = "0.7.39", optional = true }
rustc-hash = "1.1.0"
serde = "1"
string_cache = "0.8.4"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_common"
repository = "https://github.com/swc-project/swc.git"
version = "0.27.8"
version = "0.27.9"
[package.metadata.docs.rs]
all-features = true
@ -44,7 +44,7 @@ from_variant = { version = "0.1.3", path = "../from_variant" }
num-bigint = "0.4"
once_cell = "1.10.0"
parking_lot = { version = "0.12.0", optional = true }
rkyv = { version = "=0.7.37", optional = true }
rkyv = { version = "0.7.39", optional = true }
rustc-hash = "1.1.0"
serde = { version = "1.0.119", features = ["derive"] }
siphasher = "0.3.9"

View File

@ -226,10 +226,10 @@ wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
# swc_* dependencies
binding_macros = { optional = true, version = "0.2.3", path = "../binding_macros" }
swc = { optional = true, version = "0.214.7", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.5", path = "../swc_atoms" }
swc_atoms = { optional = true, version = "0.4.6", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.177.3", path = "../swc_bundler" }
swc_common = { optional = true, version = "0.27.8", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.90.7", path = "../swc_ecma_ast" }
swc_common = { optional = true, version = "0.27.9", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.90.8", path = "../swc_ecma_ast" }
swc_ecma_loader = { optional = true, version = "0.39.4", path = "../swc_ecma_loader" }
swc_ecma_parser = { optional = true, version = "0.117.4", path = "../swc_ecma_parser" }
swc_ecma_quote_macros = { optional = true, version = "0.28.4", path = "../swc_ecma_quote_macros" }
@ -242,7 +242,7 @@ swc_node_bundler = { optional = true, version = "0.0.2", path = "../s
swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.89.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.5", path = "../swc_plugin_macro" }
swc_plugin_proxy = { optional = true, version = "0.18.7", path = "../swc_plugin_proxy" }
swc_plugin_proxy = { optional = true, version = "0.18.8", path = "../swc_plugin_proxy" }
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_plugin_runner = { optional = true, version = "0.71.10", path = "../swc_plugin_runner", default-features = false }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.107.0"
version = "0.107.1"
[lib]
bench = false
@ -19,7 +19,7 @@ rkyv-impl = ["rkyv", "bytecheck", "swc_atoms/rkyv-impl", "swc_common/rkyv-impl"]
[dependencies]
bytecheck = { version = "0.6.9", optional = true }
is-macro = "0.2.0"
rkyv = { version = "=0.7.37", optional = true }
rkyv = { version = "0.7.39", optional = true }
serde = { version = "1.0.127", features = ["derive"] }
string_enum = { version = "0.3.1", path = "../string_enum/" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_ecma_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.90.7"
version = "0.90.8"
[package.metadata.docs.rs]
all-features = true
@ -26,7 +26,7 @@ bitflags = "1"
bytecheck = { version = "0.6.9", optional = true }
is-macro = "0.2.0"
num-bigint = { version = "0.4", features = ["serde"] }
rkyv = { version = "=0.7.37", optional = true }
rkyv = { version = "0.7.39", optional = true }
scoped-tls = "1.0.0"
serde = { version = "1.0.133", features = ["derive"] }
string_enum = { version = "0.3.1", path = "../string_enum" }

View File

@ -9,7 +9,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.24.4"
version = "0.24.5"
[lib]
bench = false
@ -20,7 +20,7 @@ rkyv-impl = ["rkyv", "bytecheck", "swc_atoms/rkyv-impl", "swc_common/rkyv-impl"]
[dependencies]
bytecheck = { version = "0.6.9", optional = true }
is-macro = "0.2.0"
rkyv = { version = "0.7.37", optional = true }
rkyv = { version = "0.7.39", optional = true }
serde = { version = "1.0.127", features = ["derive"] }
string_enum = { version = "0.3.1", path = "../string_enum/" }
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_plugin_proxy"
repository = "https://github.com/swc-project/swc.git"
version = "0.18.7"
version = "0.18.8"
[lib]
bench = false
@ -19,7 +19,7 @@ plugin-mode = []
[dependencies]
better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" }
bytecheck = "0.6.9"
rkyv = "=0.7.37"
rkyv = "0.7.39"
swc_common = { version = "0.27.7", path = "../swc_common", features = [
"plugin-base",
] }