-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (33 loc) · 1.01 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
[package]
name = "compilet"
description = "Server that compiles Rust, C, and C++ into WebAssembly."
version = "0.1.7"
homepage = "https://github.com/wasm-oj/compilet"
repository = "https://github.com/wasm-oj/compilet"
keywords = ["wasm", "wasm-oj", "compiler"]
categories = ["command-line-utilities"]
readme = "README.md"
license = "MIT"
edition = "2021"
include = ["/src", "build.rs", "LICENSE"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "compilet"
path = "src/main.rs"
[dependencies]
async-compression = { version = "0.4.0", features = ["tokio", "gzip"] }
base64 = "0.21.0"
clap = { version = "4.2.7", features = ["derive", "string"] }
home = "0.5.5"
jsonwebtoken = "8.3.0"
rand = "0.8.5"
rocket = { version = "0.5.0-rc.3", features = ["json"] }
sha256 = "1.1.3"
[build-dependencies]
vergen = { version = "8.1.3", features = ["build", "cargo", "git", "gitcl", "rustc", "si"] }
[features]
c = []
cpp = []
rs = []
default = ["c", "cpp", "rs"]