-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
37 lines (32 loc) · 889 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 = "jingle_sleigh"
version = "0.1.1"
edition = "2021"
description = "An FFI layer for Ghidra's SLEIGH"
homepage = "https://github.com/toolCHAINZ/jingle"
repository = "https://github.com/toolCHAINZ/jingle"
readme = "README.md"
license = "MIT"
authors = ["toolCHAINZ"]
rust-version = "1.77.0"
categories = ["api-bindings"]
keywords = ["ghidra", "sleigh", "pcode"]
include = [
"Cargo.toml",
"SLEIGH_LICENSE",
"build.rs",
"src/**/*.*"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cxx = "1.0.131"
serde = { version = "1.0.203", features = ["derive"] }
serde-xml-rs = "0.6.0"
thiserror = { version = "1.0.61", features = [] }
object = { version = "0.36.0", optional = true }
tracing = "0.1.40"
[build-dependencies]
cxx-build = "1.0.131"
[features]
gimli = ["dep:object"]
default = ["gimli"]