mirror of
https://github.com/Noratrieb/uwucc.git
synced 2026-01-15 17:15:10 +01:00
codegen
This commit is contained in:
parent
f321d0e9e1
commit
ee0b311261
12 changed files with 265 additions and 36 deletions
20
codegen/Cargo.toml
Normal file
20
codegen/Cargo.toml
Normal 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" }
|
||||
Loading…
Add table
Add a link
Reference in a new issue