2020-04-08 00:04:36 -06:00
|
|
|
[package]
|
|
|
|
|
name = "boring-lang"
|
2020-04-19 22:22:15 -06:00
|
|
|
version = "0.0.1"
|
2020-04-08 00:04:36 -06:00
|
|
|
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!
|
2021-08-08 11:42:26 -06:00
|
|
|
version = "0.19.6"
|
2020-04-08 00:04:36 -06:00
|
|
|
features = ["lexer"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2021-08-08 11:42:26 -06:00
|
|
|
lalrpop-util = "0.19.6"
|
2020-04-08 00:04:36 -06:00
|
|
|
regex = "1"
|
2020-04-13 23:59:01 -06:00
|
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "llvm7-0" }
|
2020-04-19 22:22:15 -06:00
|
|
|
clap = "2.33.0"
|