-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (41 loc) · 1.33 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "wark"
description = "WebAssembly RunKit."
version = "0.2.6"
keywords = ["wasm", "wasm-oj"]
categories = ["command-line-utilities"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/wasm-oj/wark"
repository = "https://github.com/wasm-oj/wark"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "wark"
path = "src/main.rs"
[lib]
name = "wark"
path = "src/lib.rs"
[dependencies]
async-compression = { version = "0.4.0", features = ["tokio", "gzip"] }
async-trait = "0.1.68"
base64 = "0.21.0"
clap = { version = "4.2.7", features = ["derive", "string"] }
http-cache-reqwest = { version = "0.9.0", features = ["manager-cacache", "manager-moka"] }
jsonwebtoken = "8.3.0"
reqwest = { version = "0.11.18", default-features = false, features = ["rustls", "tokio-rustls", "json"] }
reqwest-middleware = "0.2.2"
rocket = { version = "0.5.0-rc.3", features = ["json"] }
serde = "1.0.163"
serde_json = "1.0.96"
sha256 = "1.1.3"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
wasmer = "3.3.0"
wasmer-types = "3.3.0"
wasmer-wasix = "0.4.0"
[build-dependencies]
vergen = { version = "8.1.3", features = ["build", "cargo", "git", "gitcl", "rustc", "si"] }
[patch.crates-io]
reflink = { git = "https://github.com/nicokoch/reflink.git" }