diff options
-rw-r--r-- | Cargo.lock | 38 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 35 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 7bd3314b0..de8604a38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1842,6 +1842,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] +name = "lexical" +version = "5.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f404a90a744e32e8be729034fc33b90cf2a56418fbf594d69aa3c0214ad414e5" +dependencies = [ + "cfg-if 1.0.0", + "lexical-core", +] + +[[package]] +name = "lexical-core" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe" +dependencies = [ + "arrayvec", + "bitflags", + "cfg-if 1.0.0", + "ryu", + "static_assertions", +] + +[[package]] name = "libc" version = "0.2.94" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3027,6 +3050,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] name = "storage-map" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3204,13 +3233,14 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.57.3" +version = "0.57.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "024e04f5aa369dd085078ec41879b5ce338501f65a5a896eb72ffc9361256ea3" +checksum = "99a1faddea4db217e04beccd709dab0421a1b3bebc753490311c98625d5de5ab" dependencies = [ "either", "enum_kind", "fxhash", + "lexical", "log", "num-bigint", "serde", @@ -3387,9 +3417,9 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.36.2" +version = "0.36.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e921993ebfbe701c739c4966ee6f47531637725a2a23b7ef1b5d73c51bcfbef0" +checksum = "1fe1b0c92f51a9009ee4265248777df8f5610225fb172c09f2b3a108f403cf7b" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 64f261c7b..ef6a4dceb 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -79,7 +79,7 @@ shell-escape = "0.1.5" sourcemap = "6.0.1" swc_bundler = "0.37.4" swc_common = { version = "0.10.20", features = ["sourcemap"] } -swc_ecmascript = { version = "0.36.0", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] } +swc_ecmascript = { version = "0.36.3", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] } tempfile = "3.2.0" termcolor = "1.1.2" text-size = "1.1.0" |