feat: init commit

This commit is contained in:
2022-12-31 23:16:24 +08:00
parent 901b149863
commit b5f40688e2
4 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
[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]
boa_engine = "0.16.0"
getrandom = { version = "0.2.8", features = ["js"] }

View File

@@ -0,0 +1,6 @@
_:
@just --list
build:
cargo build --target wasm32-unknown-unknown

View File