mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
824 B
29 lines
824 B
3 years ago
|
[package]
|
||
|
name = "boa_gc"
|
||
2 years ago
|
description = "Garbage collector for the Boa JavaScript engine."
|
||
3 years ago
|
keywords = ["javascript", "js", "garbage", "memory"]
|
||
|
categories = ["command-line-utilities"]
|
||
2 years ago
|
version.workspace = true
|
||
|
edition.workspace = true
|
||
|
authors.workspace = true
|
||
|
license.workspace = true
|
||
|
repository.workspace = true
|
||
|
rust-version.workspace = true
|
||
3 years ago
|
|
||
2 years ago
|
[features]
|
||
11 months ago
|
# Enable default implementations of trace and finalize for the thin-vec crate
|
||
|
thin-vec = ["dep:thin-vec"]
|
||
|
# Enable default implementations of trace and finalize for some `ICU4X` types
|
||
|
icu = ["dep:icu_locid"]
|
||
2 years ago
|
|
||
3 years ago
|
[dependencies]
|
||
2 years ago
|
boa_profiler.workspace = true
|
||
|
boa_macros.workspace = true
|
||
11 months ago
|
hashbrown = { workspace = true, features = ["ahash", "raw"] }
|
||
2 years ago
|
|
||
1 year ago
|
thin-vec = { workspace = true, optional = true }
|
||
11 months ago
|
icu_locid = { workspace = true, optional = true }
|
||
12 months ago
|
|
||
|
[lints]
|
||
|
workspace = true
|