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-02-10 16:18:54 -05:00
|
|
|
julianday = "1.2.0"
|
2023-02-23 13:18:11 -05:00
|
|
|
lazy_static = "1.4.0"
|
2023-01-25 15:02:39 -05:00
|
|
|
lox = { git = "https://gitlab.torproject.org/onyinyang/lox.git", branch = "master" }
|
2022-11-09 14:40:53 -05:00
|
|
|
wasm-bindgen = "0.2"
|
2023-02-10 16:18:54 -05:00
|
|
|
time = "0.2"
|
2022-11-09 14:40:53 -05:00
|
|
|
serde_json = "1.0.87"
|
2023-01-26 14:16:41 -05:00
|
|
|
serde = "1"
|
2023-02-23 13:18:11 -05:00
|
|
|
serde_with = "1.9.1"
|
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"
|
2023-02-10 16:18:54 -05:00
|
|
|
js-sys = "0.3.61"
|
2022-11-15 21:57:49 -05:00
|
|
|
rand = { version = "0.7", features = ["wasm-bindgen"] }
|
2023-02-10 16:18:54 -05:00
|
|
|
|
|
|
|
[dependencies.chrono]
|
|
|
|
version = "0.4.19"
|
|
|
|
features = ["serde", "wasmbind"]
|