2022-11-09 14:40:53 -05:00
|
|
|
[package]
|
2022-11-10 11:00:28 -05:00
|
|
|
name = "lox-wasm"
|
|
|
|
authors = ["Cecylia Bocovich <cohosh@torproject.org>"]
|
2022-11-09 14:40:53 -05:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2022-11-10 11:00:28 -05:00
|
|
|
description = "WASM bindings for lox"
|
|
|
|
license = "MIT"
|
2022-11-09 14:40:53 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-25 15:02:23 -05:00
|
|
|
lox = { git = "https://gitlab.torproject.org/onyinyang/lox.git" }
|
2022-11-09 14:40:53 -05:00
|
|
|
wasm-bindgen = "0.2"
|
|
|
|
serde_json = "1.0.87"
|
2023-01-25 15:02:23 -05:00
|
|
|
serde-wasm-bindgen = "0.4.5"
|
2022-11-15 21:57:49 -05:00
|
|
|
|
|
|
|
console_error_panic_hook = "0.1.7"
|
|
|
|
|
|
|
|
rand = { version = "0.7", features = ["wasm-bindgen"] }
|