-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
30 lines (26 loc) · 910 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
[package]
name = "rustc-llvm-proxy"
version = "0.2.0"
authors = ["Denys Zariaiev <[email protected]>"]
license = "MIT"
edition = "2018"
readme = "README.md"
description = "Dynamically proxy LLVM calls into Rust own shared library"
repository = "https://github.com/denzp/rustc-llvm-proxy"
categories = ["development-tools::build-utils", "external-ffi-bindings"]
keywords = ["llvm"]
[badges]
appveyor = { repository = "denzp/rustc-llvm-proxy", branch = "master", service = "github" }
travis-ci = { repository = "denzp/rustc-llvm-proxy", branch = "master" }
maintenance = { status = "passively-maintained" }
[dependencies]
libloading = "0.5"
lazy_static = "1.0"
failure = "0.1"
libc = "0.2"
llvm-sys = { version = "80", features = ["no-llvm-linking", "disable-alltargets-init"] }
[build-dependencies]
cargo_metadata = "0.8"
failure = "0.1"
quote = "0.6"
syn = { version = "0.15", features = ["full"] }