Files
boring-lang/Cargo.toml
2020-04-13 23:59:01 -06:00

17 lines
429 B
TOML

[package]
name = "boring-lang"
version = "0.1.0"
authors = ["asegavac"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies.lalrpop] # <-- We added this and everything after!
version = "0.18.1"
features = ["lexer"]
[dependencies]
lalrpop-util = "0.18.1"
regex = "1"
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "llvm7-0" }