2017-12-22 15:51:36 +03:00
|
|
|
[package]
|
2022-08-11 12:52:44 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
build = "build.rs"
|
|
|
|
description = "Atoms for the swc project."
|
2021-03-31 07:09:10 +03:00
|
|
|
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-04-12 15:33:03 +03:00
|
|
|
version = "0.5.1"
|
2017-12-22 15:51:36 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2022-06-29 07:08:29 +03:00
|
|
|
[features]
|
2022-09-03 08:29:02 +03:00
|
|
|
__rkyv = []
|
|
|
|
# Enably rkyv serialization with stable version of rkyv.
|
2022-09-09 11:05:51 +03:00
|
|
|
rkyv-impl = ["__rkyv", "rkyv"]
|
2022-09-03 08:29:02 +03:00
|
|
|
# Enable rkyv serialization with updated version of rkyv, along with bytecheck.
|
|
|
|
rkyv-bytecheck-impl = ["__rkyv", "rkyv-latest"]
|
2022-06-29 07:08:29 +03:00
|
|
|
|
2017-12-22 15:51:36 +03:00
|
|
|
[dependencies]
|
2022-09-09 11:05:51 +03:00
|
|
|
bytecheck = { version = "0.6.9", optional = true }
|
|
|
|
once_cell = "1"
|
2023-04-10 06:40:25 +03:00
|
|
|
rkyv = { package = "rkyv", version = "=0.7.40", optional = true, features = [
|
|
|
|
"strict",
|
2023-04-12 15:30:38 +03:00
|
|
|
"validation",
|
2023-04-10 06:40:25 +03:00
|
|
|
] }
|
2023-03-30 11:06:02 +03:00
|
|
|
# This is to avoid cargo version selection conflict between rkyv=0.7.40 and other versions, as it is strictly pinned
|
2022-09-03 08:29:02 +03:00
|
|
|
# cannot be merged.
|
2023-04-10 06:40:25 +03:00
|
|
|
rkyv-latest = { package = "rkyv-test", version = "=0.7.38-test.2", optional = true, features = [
|
|
|
|
"strict",
|
|
|
|
] }
|
|
|
|
rustc-hash = "1.1.0"
|
|
|
|
serde = "1"
|
2023-03-08 05:47:42 +03:00
|
|
|
string_cache = "0.8.7"
|
2023-04-10 06:40:25 +03:00
|
|
|
triomphe = "0.1.8"
|
2017-12-22 15:51:36 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-03-28 09:49:30 +03:00
|
|
|
string_cache_codegen = "0.5.2"
|