forked from 01mf02/jaq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 918 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "jaq-play"
description = "Web interface for jaq"
version = "0.0.0"
authors = ["Michael Färber <[email protected]>"]
categories = ["wasm"]
readme = "README.md"
repository = "https://github.com/01mf02/jaq"
license = "MIT"
edition = "2021"
[package.metadata.wasm-pack.profile.dev]
wasm-opt = false
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
jaq-core = { version = "2.0.0-alpha", path = "../jaq-core" }
jaq-std = { version = "2.0.0-alpha", path = "../jaq-std" }
jaq-json = { version = "1.0.0-alpha", path = "../jaq-json" }
aho-corasick = "1.1.2"
codesnake = { version = "0.2" }
hifijson = "0.2"
log = "0.4.17"
unicode-width = "0.1.13"
console_log = { version = "1.0", features = ["color"] }
getrandom = { version = "0.2", features = ["js"] }
wasm-bindgen = { version = "0.2" }
web-sys = { version = "0.3", features = ["DedicatedWorkerGlobalScope"] }
js-sys = { version = "0.3" }