lox/crates/lox-wasm/Cargo.toml

30 lines
741 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]
2023-10-20 14:13:21 -04:00
getrandom = { version = "0.2", features = ["js"] }
2023-02-10 16:18:54 -05:00
julianday = "1.2.0"
lazy_static = "1.4.0"
lox-library = { path = "../lox-library", version = "0.1.0" }
lox_utils = { path = "../lox-utils", version = "0.1.0" }
wasm-bindgen = "0.2"
2023-10-19 11:35:04 -04:00
time = "0.3.30"
serde_json = "1.0.108"
console_error_panic_hook = "0.1.7"
2023-11-01 12:37:23 -04:00
js-sys = "0.3.65"
rand = { version = "0.7", features = ["wasm-bindgen"] }
2023-10-23 13:39:50 -04:00
zkp = { git = "https://gitlab.torproject.org/onyinyang/lox-zkp" }
2023-02-10 16:18:54 -05:00
[dependencies.chrono]
2023-09-15 11:03:48 -04:00
version = "0.4.31"
2023-02-10 16:18:54 -05:00
features = ["serde", "wasmbind"]