-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (32 loc) · 859 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
[package]
name = "abstraps"
version = "0.1.8"
edition = "2021"
authors = ["McCoy R. Becker"]
description = "Extensible compiler middle layer with abstract interpretation and code generation to MLIR."
repository = "https://github.com/femtomc/abstraps"
readme = "README.md"
license-file = "LICENSE"
[dependencies]
color-eyre = "0.5.11"
cranelift = { version = "0.79.0", optional = true }
cranelift-module = { version = "0.79.0", optional = true }
cranelift-jit = { version = "0.79.0", optional = true }
downcast-rs = "1.2.0"
indenter = "0.3.3"
lazy_static = "1.4.0"
tracing = "0.1.29"
tracing-subscriber = "0.3.3"
yansi = "0.5.0"
[build-dependencies]
bindgen = "0.59.1"
[features]
default = ["arith", "base", "builtin"]
arith = []
base = []
builtin = []
clift = ["cranelift", "cranelift-module", "cranelift-jit"]
memref = []
scf = []
symbolic = []
mlir = []