32 lines
947 B
TOML
32 lines
947 B
TOML
[package]
|
|
name = "ngr"
|
|
version = "0.1.0"
|
|
authors = ["awick"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "ngr"
|
|
path = "src/lib.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" }
|
|
cranelift-object = { path = "vendor/wasmtime/cranelift/object" }
|
|
internment = { version = "0.7.0", default-features = false, features = ["arc"] }
|
|
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"
|
|
|
|
[build-dependencies]
|
|
lalrpop = "^0.19.7"
|