-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (36 loc) · 940 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
34
35
36
37
38
39
40
41
[package]
authors = ["Kartik Sharma <[email protected]>"]
categories = ["compiler", "command-line-utilities"]
description = "A brainfuck compiler which compiles to raw wasm"
name = "brainfk-rs"
license = "MIT"
version = "0.1.1"
repository = "https://github.com/crazystylus/brainfk-rs.git"
edition = "2021"
[dependencies]
clap = { version = "3.2.2", features = ["derive"] }
wasm-encoder = "0.13"
wasmer = { version = "2.3.0", features = ["default", "llvm", "singlepass"] }
wasmer-wasi = "2.3.0"
wasmparser = "0.86.0"
wasm-pack = "0.10.3"
[dependencies.uuid]
version = "1.1.2"
features = [
"v4",
"fast-rng",
"macro-diagnostics"
]
[dev-dependencies]
assert_cmd = "2.0"
predicates = "2.1"
criterion = { version = "0.4", features = ["cargo_bench_support", "html_reports"] }
[[bench]]
name = "wasm_benchmark"
harness = false
[profile.release]
strip = "symbols"
lto = true
opt-level = "s"
debug = false
codegen-units = 1