18 lines
500 B
TOML
18 lines
500 B
TOML
[package]
|
|
name = "javascript-engine"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ['cdylib']
|
|
|
|
[dependencies]
|
|
wit-bindgen-core = { path = '../wit-bindgen/crates/bindgen-core' }
|
|
wit-bindgen-guest-rust = { path = '../wit-bindgen/crates/guest-rust' }
|
|
boa_engine = "0.16.0"
|
|
getrandom = { version = "0.2.8", features = ["js"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|