-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
44 lines (39 loc) · 979 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
42
43
[package]
name = "b3"
version = "0.1.9"
edition = "2021"
license = "BSD-2-Clause"
repository = "https://github.com/playxe/b3-rs"
readme = "README.md"
description = "A Rust port of B3 WebKit codegen backend"
keywords = ["jit", "compiler", "codegen", "llvm"]
authors = ["Adel Prokurov <[email protected]>"]
categories = ["compilers"]
[dependencies]
tinyvec = { version = "1.6", features = ["alloc"] }
num-traits = "0.2"
num-integer = "0.1"
macroassembler = "1.0.3"
once_cell = "1.8"
paste = "1.0"
indexmap = "2.0"
libc = "0.2"
cfg-if = "1.0"
cool-bitvector = "0.1.1"
[features]
disassembly = ["macroassembler/x86-disasm", "macroassembler/arm-disasm"]
[dev-dependencies]
criterion = "0.5"
target-lexicon = "0.12"
cranelift = "0.95"
cranelift-module = "0.95"
cranelift-jit = "0.95"
pico-args = "0.5"
mimalloc = "0.1"
r7rs-parser = { git = "https://github.com/playxe/r7rs-parser" }
[[bench]]
name = "brainfuck"
harness = false
[[bench]]
name = "factorial"
harness = false