forked from TheDan64/inkwell
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
69 lines (66 loc) · 1.47 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "inkwell"
version = "0.1.0"
authors = ["Daniel Kolsoi <[email protected]>"]
description = "Inkwell aims to help you pen your own programming languages by safely wrapping llvm-sys."
repository = "https://github.com/TheDan64/inkwell"
readme = "README.md"
keywords = ["llvm", "safe", "wrapper"]
license = "Apache-2.0"
categories = ["development-tools::ffi"]
edition = "2018"
[features]
default = ["target-all"]
llvm3-6 = []
llvm3-7 = []
llvm3-8 = []
llvm3-9 = []
llvm4-0 = []
llvm5-0 = []
llvm6-0 = []
llvm7-0 = []
llvm8-0 = []
target-x86 = []
target-arm = []
target-mips = []
target-aarch64 = []
target-amdgpu = []
target-systemz = []
target-hexagon = []
target-nvptx = []
target-msp430 = []
target-xcore = []
target-powerpc = []
target-sparc = []
target-bpf = []
target-lanai = []
target-webassembly = []
target-all = [
"target-x86",
"target-arm",
"target-mips",
"target-aarch64",
"target-amdgpu",
"target-systemz",
"target-hexagon",
"target-nvptx",
"target-msp430",
"target-xcore",
"target-powerpc",
"target-sparc",
"target-bpf",
"target-lanai",
"target-webassembly"
]
experimental = ["static-alloc"]
[dependencies]
either = "1.5"
enum-methods = "0.0.8"
inkwell_internal_macros = { path = "./internal_macros", version = "0.1.0" }
libc = "0.2"
llvm-sys = "80.1"
regex = "1"
static-alloc = { version = "0.1", optional = true }
[badges]
travis-ci = { repository = "TheDan64/inkwell" }
codecov = { repository = "TheDan64/inkwell" }