Files
ngr/Cargo.toml

32 lines
618 B
TOML

[package]
name = "ngr"
version = "0.1.0"
authors = ["awick"]
edition = "2021"
[lib]
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 = "^0.89.2"
cranelift-frontend = "^0.89.2"
cranelift-module = "^0.89.2"
cranelift-native = "^0.89.2"
cranelift-object = "^0.89.2"
lalrpop-util = "^0.19.7"
lazy_static = "^1.4.0"
logos = "^0.12.0"
pretty = { version = "^0.11.2", features = ["termcolor"] }
thiserror = "^1.0.30"
[build-dependencies]
lalrpop = "^0.19.7"