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
904 B
31 lines
904 B
5 years ago
|
[package]
|
||
|
name = "boa_wasm"
|
||
2 years ago
|
description = "WASM compatibility layer for the Boa JavaScript engine."
|
||
5 years ago
|
keywords = ["javascript", "compiler", "lexer", "parser", "js"]
|
||
3 years ago
|
categories = ["parser-implementations", "wasm", "compilers"]
|
||
3 years ago
|
publish = false
|
||
2 years ago
|
version.workspace = true
|
||
|
edition.workspace = true
|
||
|
authors.workspace = true
|
||
|
license.workspace = true
|
||
|
repository.workspace = true
|
||
|
rust-version.workspace = true
|
||
5 years ago
|
|
||
|
[dependencies]
|
||
1 year ago
|
boa_engine = { workspace = true, features = ["js"] }
|
||
11 months ago
|
wasm-bindgen = { version = "0.2.89", default-features = false }
|
||
12 months ago
|
getrandom = { version = "0.2.11", features = ["js"] }
|
||
1 year ago
|
chrono = { workspace = true, default-features = false, features = ["clock", "std", "wasmbind"] }
|
||
1 year ago
|
console_error_panic_hook = "0.1.7"
|
||
5 years ago
|
|
||
2 years ago
|
[features]
|
||
1 year ago
|
default = ["boa_engine/annex-b", "boa_engine/intl", "boa_engine/experimental"]
|
||
2 years ago
|
|
||
5 years ago
|
[lib]
|
||
|
crate-type = ["cdylib", "lib"]
|
||
|
name = "boa_wasm"
|
||
|
bench = false
|
||
12 months ago
|
|
||
|
[lints]
|
||
|
workspace = true
|