swc/crates/swc_atoms/Cargo.toml

29 lines
739 B
TOML
Raw Normal View History

2017-12-22 15:51:36 +03:00
[package]
2022-08-11 12:52:44 +03:00
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Atoms for the swc project."
documentation = "https://rustdoc.swc.rs/swc_atoms/"
2022-08-11 12:52:44 +03:00
edition = "2021"
license = "Apache-2.0"
name = "swc_atoms"
repository = "https://github.com/swc-project/swc.git"
2023-12-01 23:08:13 +03:00
version = "0.6.5"
2017-12-22 15:51:36 +03:00
[lib]
bench = false
[features]
__rkyv = []
rkyv-impl = ["__rkyv", "rkyv", "bytecheck"]
2017-12-22 15:51:36 +03:00
[dependencies]
# bytecheck version should be in sync with rkyv version. Do not bump individually.
bytecheck = { version = "0.6.10", optional = true }
2023-11-09 06:45:59 +03:00
hstr = "0.2.5"
once_cell = "1"
rkyv = { package = "rkyv", version = "=0.7.42", optional = true, features = [
"strict",
"validation",
] }
rustc-hash = "1.1.0"
serde = "1"