mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 09:38:16 +03:00
31 lines
851 B
TOML
31 lines
851 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "Atoms for the swc project."
|
|
documentation = "https://rustdoc.swc.rs/swc_atoms/"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
name = "swc_atoms"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.6.7"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[features]
|
|
__rkyv = []
|
|
rkyv-impl = ["__rkyv", "rkyv", "bytecheck"]
|
|
|
|
[dependencies]
|
|
# bytecheck version should be in sync with rkyv version. Do not bump individually.
|
|
arbitrary = { workspace = true, optional = true }
|
|
bytecheck = { workspace = true, optional = true }
|
|
hstr = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
[dependencies.rkyv]
|
|
features = ["strict", "validation"]
|
|
optional = true
|
|
workspace = true
|