lox/crates/lox-wasm/Cargo.toml

20 lines
417 B
TOML
Raw Normal View History

[package]
2022-11-10 11:00:28 -05:00
name = "lox-wasm"
authors = ["Cecylia Bocovich <cohosh@torproject.org>"]
version = "0.1.0"
edition = "2021"
2022-11-10 11:00:28 -05:00
description = "WASM bindings for lox"
license = "MIT"
[lib]
crate-type = ["cdylib"]
[dependencies]
lox = { git = "https://git-crysp.uwaterloo.ca/iang/lox.git" }
wasm-bindgen = "0.2"
serde_json = "1.0.87"
console_error_panic_hook = "0.1.7"
rand = { version = "0.7", features = ["wasm-bindgen"] }