16 lines
324 B
TOML
16 lines
324 B
TOML
[package]
|
|
name = "lox-wasm"
|
|
authors = ["Cecylia Bocovich <cohosh@torproject.org>"]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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"
|