File size: 2,114 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | [package]
name = "turbopack-ecmascript"
version = "0.1.0"
description = "TBD"
license = "MIT"
edition = "2024"
autobenches = false
[lib]
bench = false
[lints]
workspace = true
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
auto-hash-map = { workspace = true }
bytes-str = { workspace = true }
data-encoding = { workspace = true }
either = { workspace = true }
indexmap = { workspace = true }
indoc = { workspace = true }
itertools = { workspace = true }
num-bigint = "0.4"
num-traits = "0.2.15"
once_cell = { workspace = true }
parking_lot = { workspace = true }
petgraph = { workspace = true }
dashmap = { workspace = true }
regex = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true, features = ["raw_value"] }
swc_sourcemap = { workspace = true }
smallvec = { workspace = true }
strsim = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
turbo-esregex = { workspace = true }
turbo-rcstr = { workspace = true }
turbo-tasks = { workspace = true }
turbo-tasks-fs = { workspace = true }
turbo-tasks-hash = { workspace = true }
turbopack-core = { workspace = true }
turbopack-resolve = { workspace = true }
turbopack-swc-utils = { workspace = true }
url = { workspace = true }
swc_core = { workspace = true, features = [
"ecma_ast",
"ecma_ast_serde",
"common",
"common_concurrent",
"common_sourcemap",
"ecma_ast_shrink",
"ecma_codegen",
"ecma_lints",
"ecma_minifier",
"ecma_parser",
"ecma_preset_env",
"ecma_transforms",
"ecma_transforms_module",
"ecma_transforms_react",
"ecma_transforms_optimization",
"ecma_transforms_typescript",
"ecma_transforms_proposal",
"ecma_quote",
"ecma_visit",
"ecma_visit_path",
"ecma_visit_serde",
"ecma_utils",
"testing",
"base",
] }
[dev-dependencies]
criterion = { workspace = true, features = ["async_tokio"] }
turbo-tasks-malloc = { workspace = true }
turbo-tasks-testing = { workspace = true }
[build-dependencies]
turbo-tasks-build = { workspace = true }
[[bench]]
name = "mod"
harness = false
|