39 lines
917 B
TOML
39 lines
917 B
TOML
[package]
|
|
name = "ngr"
|
|
version = "0.1.0"
|
|
authors = ["awick"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "ngr"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
|
codespan = "0.11.1"
|
|
codespan-reporting = "0.11.1"
|
|
cranelift-codegen = "0.105.2"
|
|
cranelift-jit = "0.105.2"
|
|
cranelift-frontend = "0.105.2"
|
|
cranelift-module = "0.105.2"
|
|
cranelift-native = "0.105.2"
|
|
cranelift-object = "0.105.2"
|
|
internment = { version = "0.7.4", default-features = false, features = ["arc"] }
|
|
lalrpop-util = "0.20.2"
|
|
lazy_static = "1.4.0"
|
|
logos = "0.14.0"
|
|
pretty = { version = "0.12.3", features = ["termcolor"] }
|
|
proptest = "1.4.0"
|
|
rand = "0.8.5"
|
|
rustyline = "13.0.0"
|
|
target-lexicon = "0.12.14"
|
|
tempfile = "3.10.1"
|
|
thiserror = "1.0.57"
|
|
anyhow = "1.0.80"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["time", "json", "env-filter"] }
|
|
names = "0.14.0"
|
|
|
|
[build-dependencies]
|
|
lalrpop = "0.20.2"
|