Very weirdly organized, but it JITs!

This commit is contained in:
2023-03-24 10:28:32 -05:00
parent ff8412acca
commit 4aa3a9419a
14 changed files with 441 additions and 81 deletions

View File

@@ -8,15 +8,12 @@ edition = "2021"
name = "ngr"
path = "src/lib.rs"
[[bin]]
name = "ngrc"
path = "src/bin.rs"
[dependencies]
clap = { version = "^3.0.14", features = ["derive"] }
codespan = "0.11.1"
codespan-reporting = "0.11.1"
cranelift-codegen = { path = "vendor/wasmtime/cranelift/codegen" }
cranelift-jit = { path = "vendor/wasmtime/cranelift/jit" }
cranelift-frontend = { path = "vendor/wasmtime/cranelift/frontend" }
cranelift-module = { path = "vendor/wasmtime/cranelift/module" }
cranelift-native = { path = "vendor/wasmtime/cranelift/native" }
@@ -26,6 +23,7 @@ lalrpop-util = "^0.19.7"
lazy_static = "^1.4.0"
logos = "^0.12.0"
pretty = { version = "^0.11.2", features = ["termcolor"] }
rustyline = "^11.0.0"
target-lexicon = "^0.12.5"
thiserror = "^1.0.30"