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.
31 lines
986 B
31 lines
986 B
3 years ago
|
[package]
|
||
|
name = "boa_interner"
|
||
2 years ago
|
description = "String interner for the Boa JavaScript engine."
|
||
3 years ago
|
keywords = ["javascript", "js", "string", "interner"]
|
||
2 years ago
|
categories = ["data-structures", "no-std"]
|
||
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]
|
||
1 year ago
|
serde = ["dep:serde"]
|
||
|
arbitrary = ["dep:arbitrary"]
|
||
2 years ago
|
|
||
3 years ago
|
[dependencies]
|
||
2 years ago
|
boa_macros.workspace = true
|
||
1 year ago
|
boa_gc.workspace = true
|
||
1 year ago
|
phf = { workspace = true, default-features = false, features = ["macros"] }
|
||
|
rustc-hash = { workspace = true, default-features = false }
|
||
|
static_assertions.workspace = true
|
||
1 year ago
|
once_cell = { workspace = true, features = ["std"]}
|
||
1 year ago
|
indexmap.workspace = true
|
||
|
serde = { workspace = true, features = ["derive"], optional = true }
|
||
|
arbitrary = { workspace = true, features = ["derive"], optional = true }
|
||
|
hashbrown = { workspace = true, default-features = false, features = ["inline-more"] }
|
||
12 months ago
|
|
||
|
[lints]
|
||
|
workspace = true
|