-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
40 lines (33 loc) · 806 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
[package]
name = "simplejit"
version = "0.1.0"
authors = ["Charlie Cummings <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0"
enum-display-derive = "0.1.1"
yaxpeax-arch = "0.2.5"
goblin = "0.4"
target-lexicon = "0.12.1"
bitvec = "0.22.3"
bitflags = "1.3.1"
rangemap = "0.1.11"
lineiform = { path = "./lineiform" }
frunk = "0.4.0"
[dependencies.yaxpeax-x86]
version = "1.0.4"
features = ["fmt"]
path = "../yaxpeax-x86" # FIXME when yax x86 1.1 comes out
[profile.dev]
opt-level = 2 # we use tailcalls a lot, which will blow the stack on O0
[profile.release]
debug = false
opt-level = 3
overflow-checks = true
panic = "abort"
[workspace]
members = [
"tangle",
"lineiform"
]