summaryrefslogtreecommitdiff
path: root/rust/examples/test_demangler/Cargo.toml
blob: eb4daa34fef43c3c2c909a7b223f51f463dd266f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "test_demangler"
version = "0.1.0"
edition = "2021"

# Uncomment this if you're writing a plugin (plugins are shared objects loaded by the core):
[lib]
crate-type = ["cdylib"]

# You can point at the BinaryNinja dependency in one of two ways, via path:
[dependencies]
binaryninja = {path="../../"}
log = "0.4.21"

# Or directly at the git repo:
# [dependencies]
# binaryninja = {git = "https://github.com/Vector35/binaryninja-api.git", branch = "dev"}