36 lines
794 B
TOML
36 lines
794 B
TOML
[package]
|
|
name = "ngr"
|
|
version = "0.1.0"
|
|
authors = ["awick"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "ngr"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4.11", features = ["derive"] }
|
|
codespan = "0.11.1"
|
|
codespan-reporting = "0.11.1"
|
|
cranelift-codegen = "0.103.0"
|
|
cranelift-jit = "0.103.0"
|
|
cranelift-frontend = "0.103.0"
|
|
cranelift-module = "0.103.0"
|
|
cranelift-native = "0.103.0"
|
|
cranelift-object = "0.103.0"
|
|
internment = { version = "0.7.4", default-features = false, features = ["arc"] }
|
|
lalrpop-util = "0.20.0"
|
|
lazy_static = "1.4.0"
|
|
logos = "0.13.0"
|
|
pretty = { version = "0.12.3", features = ["termcolor"] }
|
|
proptest = "1.4.0"
|
|
rand = "0.8.5"
|
|
rustyline = "13.0.0"
|
|
target-lexicon = "0.12.12"
|
|
tempfile = "3.8.1"
|
|
thiserror = "1.0.52"
|
|
anyhow = "1.0.77"
|
|
|
|
[build-dependencies]
|
|
lalrpop = "0.20.0"
|