mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
build(swc_core): Bump up rkyv
(#5507)
This commit is contained in:
parent
787f7636ef
commit
becc3aebf2
20
Cargo.lock
generated
20
Cargo.lock
generated
@ -2356,9 +2356,9 @@ checksum = "11000e6ba5020e53e7cc26f73b91ae7d5496b4977851479edb66b694c0675c21"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rkyv"
|
name = "rkyv"
|
||||||
version = "0.7.37"
|
version = "0.7.39"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "1f08c8062c1fe1253064043b8fc07bfea1b9702b71b4a86c11ea3588183b12e1"
|
checksum = "cec2b3485b07d96ddfd3134767b8a447b45ea4eb91448d0a35180ec0ffd5ed15"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytecheck",
|
"bytecheck",
|
||||||
"hashbrown 0.12.0",
|
"hashbrown 0.12.0",
|
||||||
@ -2370,9 +2370,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rkyv_derive"
|
name = "rkyv_derive"
|
||||||
version = "0.7.37"
|
version = "0.7.39"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e289706df51226e84814bf6ba1a9e1013112ae29bc7a9878f73fce360520c403"
|
checksum = "6eaedadc88b53e36dd32d940ed21ae4d850d5916f2581526921f553a72ac34c4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@ -2893,7 +2893,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_atoms"
|
name = "swc_atoms"
|
||||||
version = "0.4.5"
|
version = "0.4.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytecheck",
|
"bytecheck",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
@ -2964,7 +2964,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_common"
|
name = "swc_common"
|
||||||
version = "0.27.8"
|
version = "0.27.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -3065,7 +3065,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_css_ast"
|
name = "swc_css_ast"
|
||||||
version = "0.107.0"
|
version = "0.107.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytecheck",
|
"bytecheck",
|
||||||
"is-macro",
|
"is-macro",
|
||||||
@ -3199,7 +3199,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_ecma_ast"
|
name = "swc_ecma_ast"
|
||||||
version = "0.90.7"
|
version = "0.90.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arbitrary",
|
"arbitrary",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
@ -3851,7 +3851,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_html_ast"
|
name = "swc_html_ast"
|
||||||
version = "0.24.4"
|
version = "0.24.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytecheck",
|
"bytecheck",
|
||||||
"is-macro",
|
"is-macro",
|
||||||
@ -4043,7 +4043,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "swc_plugin_proxy"
|
name = "swc_plugin_proxy"
|
||||||
version = "0.18.7"
|
version = "0.18.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"better_scoped_tls",
|
"better_scoped_tls",
|
||||||
"bytecheck",
|
"bytecheck",
|
||||||
|
@ -7,7 +7,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_atoms"
|
name = "swc_atoms"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.4.5"
|
version = "0.4.6"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -18,7 +18,7 @@ rkyv-impl = ["rkyv", "bytecheck"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
bytecheck = { version = "0.6.9", optional = true }
|
bytecheck = { version = "0.6.9", optional = true }
|
||||||
once_cell = "1"
|
once_cell = "1"
|
||||||
rkyv = { version = "=0.7.37", optional = true }
|
rkyv = { version = "0.7.39", optional = true }
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
serde = "1"
|
serde = "1"
|
||||||
string_cache = "0.8.4"
|
string_cache = "0.8.4"
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_common"
|
name = "swc_common"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.27.8"
|
version = "0.27.9"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -44,7 +44,7 @@ from_variant = { version = "0.1.3", path = "../from_variant" }
|
|||||||
num-bigint = "0.4"
|
num-bigint = "0.4"
|
||||||
once_cell = "1.10.0"
|
once_cell = "1.10.0"
|
||||||
parking_lot = { version = "0.12.0", optional = true }
|
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"
|
rustc-hash = "1.1.0"
|
||||||
serde = { version = "1.0.119", features = ["derive"] }
|
serde = { version = "1.0.119", features = ["derive"] }
|
||||||
siphasher = "0.3.9"
|
siphasher = "0.3.9"
|
||||||
|
@ -226,10 +226,10 @@ wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
|
|||||||
# swc_* dependencies
|
# swc_* dependencies
|
||||||
binding_macros = { optional = true, version = "0.2.3", path = "../binding_macros" }
|
binding_macros = { optional = true, version = "0.2.3", path = "../binding_macros" }
|
||||||
swc = { optional = true, version = "0.214.7", path = "../swc" }
|
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_bundler = { optional = true, version = "0.177.3", path = "../swc_bundler" }
|
||||||
swc_common = { optional = true, version = "0.27.8", path = "../swc_common" }
|
swc_common = { optional = true, version = "0.27.9", path = "../swc_common" }
|
||||||
swc_ecma_ast = { optional = true, version = "0.90.7", path = "../swc_ecma_ast" }
|
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_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_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" }
|
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_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 = { optional = true, version = "0.89.0", path = "../swc_plugin" }
|
||||||
swc_plugin_macro = { optional = true, version = "0.9.5", path = "../swc_plugin_macro" }
|
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" }
|
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
|
||||||
# TODO: eventually swc_plugin_runner needs to remove default features
|
# 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 }
|
swc_plugin_runner = { optional = true, version = "0.71.10", path = "../swc_plugin_runner", default-features = false }
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_css_ast"
|
name = "swc_css_ast"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.107.0"
|
version = "0.107.1"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -19,7 +19,7 @@ rkyv-impl = ["rkyv", "bytecheck", "swc_atoms/rkyv-impl", "swc_common/rkyv-impl"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
bytecheck = { version = "0.6.9", optional = true }
|
bytecheck = { version = "0.6.9", optional = true }
|
||||||
is-macro = "0.2.0"
|
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"] }
|
serde = { version = "1.0.127", features = ["derive"] }
|
||||||
string_enum = { version = "0.3.1", path = "../string_enum/" }
|
string_enum = { version = "0.3.1", path = "../string_enum/" }
|
||||||
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
|
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_ecma_ast"
|
name = "swc_ecma_ast"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.90.7"
|
version = "0.90.8"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
@ -26,7 +26,7 @@ bitflags = "1"
|
|||||||
bytecheck = { version = "0.6.9", optional = true }
|
bytecheck = { version = "0.6.9", optional = true }
|
||||||
is-macro = "0.2.0"
|
is-macro = "0.2.0"
|
||||||
num-bigint = { version = "0.4", features = ["serde"] }
|
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"
|
scoped-tls = "1.0.0"
|
||||||
serde = { version = "1.0.133", features = ["derive"] }
|
serde = { version = "1.0.133", features = ["derive"] }
|
||||||
string_enum = { version = "0.3.1", path = "../string_enum" }
|
string_enum = { version = "0.3.1", path = "../string_enum" }
|
||||||
|
@ -9,7 +9,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_html_ast"
|
name = "swc_html_ast"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.24.4"
|
version = "0.24.5"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -20,7 +20,7 @@ rkyv-impl = ["rkyv", "bytecheck", "swc_atoms/rkyv-impl", "swc_common/rkyv-impl"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
bytecheck = { version = "0.6.9", optional = true }
|
bytecheck = { version = "0.6.9", optional = true }
|
||||||
is-macro = "0.2.0"
|
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"] }
|
serde = { version = "1.0.127", features = ["derive"] }
|
||||||
string_enum = { version = "0.3.1", path = "../string_enum/" }
|
string_enum = { version = "0.3.1", path = "../string_enum/" }
|
||||||
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
|
swc_atoms = { version = "0.4.5", path = "../swc_atoms" }
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
name = "swc_plugin_proxy"
|
name = "swc_plugin_proxy"
|
||||||
repository = "https://github.com/swc-project/swc.git"
|
repository = "https://github.com/swc-project/swc.git"
|
||||||
version = "0.18.7"
|
version = "0.18.8"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
bench = false
|
bench = false
|
||||||
@ -19,7 +19,7 @@ plugin-mode = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" }
|
better_scoped_tls = { version = "0.1.0", path = "../better_scoped_tls" }
|
||||||
bytecheck = "0.6.9"
|
bytecheck = "0.6.9"
|
||||||
rkyv = "=0.7.37"
|
rkyv = "0.7.39"
|
||||||
swc_common = { version = "0.27.7", path = "../swc_common", features = [
|
swc_common = { version = "0.27.7", path = "../swc_common", features = [
|
||||||
"plugin-base",
|
"plugin-base",
|
||||||
] }
|
] }
|
||||||
|
Loading…
Reference in New Issue
Block a user