-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (37 loc) · 881 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 = "bao-pdb"
version = "0.2.2"
authors = ["jan"]
edition = "2018"
build = "build.rs"
license = "Unlicense"
description = "bao-pdb can be used to generate PDB files from existing applications."
homepage = "https://github.com/not-wlan/bao"
repository = "https://github.com/not-wlan/bao"
readme = "README.md"
[dependencies]
snafu = "0.6.9"
regex = "~1"
serde_json = "1.0"
serde = "1.0"
serde_derive = "1.0"
simplelog = "0.12.0"
log = "~0.4"
clap = "2.33"
uuid = { version = "0.8", features = ["v4"] }
[dependencies.clang-sys]
version = "1.2.0"
features = ["clang_11_0"]
[dependencies.pdb_wrapper]
version = "0.2.2"
default-features = false
[dependencies.clang]
version = "1.0.3"
features = ["clang_10_0"]
[dependencies.goblin]
version = "~0.2"
features = ["std"]
[features]
default = ["llvm_13"]
llvm_10 = ["pdb_wrapper/llvm_10"]
llvm_13 = ["pdb_wrapper/llvm_13"]