This commit is contained in:
nora 2023-05-24 20:24:19 +02:00
parent f321d0e9e1
commit ee0b311261
12 changed files with 265 additions and 36 deletions

20
codegen/Cargo.toml Normal file
View file

@ -0,0 +1,20 @@
[package]
name = "codegen"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
analysis = { path = "../analysis" }
iced-x86 = { version = "1.18.0", default-features = false, features = [
"encoder",
"block_encoder",
"op_code_info",
"instr_info",
"nasm", # for debugging output
"code_asm",
"std",
] }
object = { version = "0.31.1", features = ["write"] }
parser = { path = "../parser" }