2017-12-22 15:51:36 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Common utilities for the swc project."
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_common/"
|
2022-08-11 12:52:44 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_common"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2024-02-08 04:51:17 +03:00
|
|
|
version = "0.33.17"
|
2021-11-02 17:54:20 +03:00
|
|
|
|
2022-08-11 12:52:44 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2021-11-25 08:16:18 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2020-07-31 12:49:07 +03:00
|
|
|
[features]
|
2022-09-09 11:05:51 +03:00
|
|
|
__plugin = []
|
|
|
|
__plugin_mode = []
|
|
|
|
__plugin_rt = []
|
2023-08-16 21:02:05 +03:00
|
|
|
ahash = ["dep:ahash"]
|
2022-09-09 11:05:51 +03:00
|
|
|
concurrent = ["parking_lot"]
|
|
|
|
debug = []
|
|
|
|
default = []
|
|
|
|
diagnostic-serde = []
|
|
|
|
plugin-base = ["__plugin", "anyhow", "rkyv-impl", "diagnostic-serde"]
|
|
|
|
plugin-mode = ["__plugin_mode", "plugin-base"]
|
|
|
|
plugin-rt = ["__plugin_rt", "plugin-base"]
|
|
|
|
|
|
|
|
plugin_transform_schema_v1 = []
|
|
|
|
plugin_transform_schema_vtest = []
|
|
|
|
|
|
|
|
tty-emitter = ["atty", "termcolor"]
|
|
|
|
|
2023-04-13 08:49:58 +03:00
|
|
|
__rkyv = []
|
2023-05-06 06:54:25 +03:00
|
|
|
rkyv-impl = ["__rkyv", "rkyv", "swc_atoms/rkyv-impl", "bytecheck"]
|
2020-07-31 12:49:07 +03:00
|
|
|
|
2017-12-22 15:51:36 +03:00
|
|
|
[dependencies]
|
2024-02-13 07:32:49 +03:00
|
|
|
ahash = { version = "0.8.8", optional = true }
|
2023-06-22 10:40:41 +03:00
|
|
|
anyhow = { version = "1.0.71", optional = true }
|
2023-04-12 15:30:38 +03:00
|
|
|
arbitrary = { version = "1", optional = true, features = ["derive"] }
|
2023-05-06 06:54:25 +03:00
|
|
|
atty = { version = "0.2", optional = true }
|
|
|
|
# bytecheck version should be in sync with rkyv version. Do not bump individually.
|
|
|
|
bytecheck = { version = "0.6.10", optional = true }
|
2023-04-12 15:30:38 +03:00
|
|
|
cfg-if = "1.0.0"
|
|
|
|
either = "1.5"
|
2022-10-27 04:21:36 +03:00
|
|
|
new_debug_unreachable = "1.0.4"
|
2023-04-12 15:30:38 +03:00
|
|
|
num-bigint = "0.4"
|
2023-06-22 10:40:41 +03:00
|
|
|
once_cell = "1.18.0"
|
|
|
|
parking_lot = { version = "0.12.1", optional = true }
|
2023-05-16 08:17:12 +03:00
|
|
|
rkyv = { version = "=0.7.42", optional = true, features = [
|
2023-04-12 15:30:38 +03:00
|
|
|
"strict",
|
|
|
|
"validation",
|
|
|
|
] }
|
2023-05-06 06:54:25 +03:00
|
|
|
rustc-hash = "1.1.0"
|
|
|
|
serde = { version = "1.0.119", features = ["derive"] }
|
|
|
|
siphasher = "0.3.9"
|
|
|
|
sourcemap = { version = "6", optional = true }
|
|
|
|
termcolor = { version = "1.0", optional = true }
|
2023-06-22 10:40:41 +03:00
|
|
|
tracing = "0.1.37"
|
2023-03-24 07:46:42 +03:00
|
|
|
unicode-width = "0.1.4"
|
2023-06-22 16:37:35 +03:00
|
|
|
url = "2.4.0"
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2023-12-08 10:18:16 +03:00
|
|
|
ast_node = { version = "0.9.6", path = "../ast_node" }
|
2023-06-22 16:40:52 +03:00
|
|
|
better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" }
|
2023-12-08 10:18:16 +03:00
|
|
|
from_variant = { version = "0.1.7", path = "../from_variant" }
|
2023-12-01 23:08:13 +03:00
|
|
|
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
|
2023-12-08 10:18:16 +03:00
|
|
|
swc_eq_ignore_macros = { version = "0.1.3", path = "../swc_eq_ignore_macros" }
|
|
|
|
swc_visit = { version = "0.5.8", path = "../swc_visit" }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2020-01-15 12:00:08 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-22 10:40:41 +03:00
|
|
|
criterion = "0.5"
|
2022-08-11 12:52:44 +03:00
|
|
|
rayon = "1"
|
2020-02-29 04:29:34 +03:00
|
|
|
serde_json = "1"
|
2022-04-03 18:56:29 +03:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
2022-08-11 12:52:44 +03:00
|
|
|
name = "serde"
|