-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
39 lines (35 loc) · 1.04 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
[package]
name = "yaxpeax-core"
version = "0.0.2"
authors = [ "iximeow <me@iximeow.net>" ]
license = "0BSD"
repository = ""
description = "program analysis for machine code"
[dependencies]
yaxpeax-arch = { version = "0.2.4", features = ["use-serde"] }
yaxpeax-arm = { version = "0.1.0", features = ["use-serde"] }
yaxpeax-x86 = { version = "1.0.4", features = ["use-serde"] }
yaxpeax-msp430 = { version = "0.1.0", features = ["use-serde"] }
yaxpeax-pic17 = { version = "0.1.1", features = ["use-serde"] }
yaxpeax-pic18 = { version = "0.1.1", features = ["use-serde"] }
# yaxpeax-pic24 = { version = "0.0.2", features = ["use-serde"] }
"smallvec" = "1.2.0"
"goblin" = "0.0.20"
"num-traits" = "0.2"
"termios" = "0.2.2"
"termion" = "1.5.2"
"serde" = { version = "1.0", features = ["rc"] }
"serde_json" = "1.0"
"serde_derive" = "1.0"
"petgraph" = "0.4.13"
"nix" = "0.12.0"
"proc-maps" = "0.1.5"
"tracing" = "0.1.11"
"siphasher" = "0.3.0"
# [[bin]]
# name = "picanalyzer"
# test = false
# bench = false
# source = "src/picanalyzer.rs"
[profile.release]
lto = true