forked from second-state/wasmedge-quickjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 863 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
[package]
name = "wasmedge_quickjs"
version = "0.2.0"
authors = ["csh <[email protected]>", "Michael Yuan <[email protected]>"]
description = "Create your own JavaScript runtime and extension APIs for WasmEdge."
repository = "https://github.com/second-state/wasmedge-quickjs"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://www.secondstate.io/articles/run-javascript-in-webassembly-with-wasmedge/"
homepage = "https://www.secondstate.io/"
edition = "2018"
exclude = [
"example_js/*",
"examples/*",
]
[dependencies]
wasmedge_http_req = "0.8.1"
wasmedge_wasi_socket = "0.2.0"
httpcodec = "0.2.3"
bytecodec = "0.4.15"
argparse = "0.2.2"
image = { version = "0.23.0", default-features = false, features = ["jpeg", "png"] }
imageproc = "0.22.0"
[features]
default = ["http"]
http = []
img = []
tensorflow = ["img"]
cjs = []