2021-03-07 21:29:59 +01:00
|
|
|
[package]
|
|
|
|
name = "achilles"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Griffin Smith <root@gws.fyi>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.38"
|
2021-03-14 21:43:47 +01:00
|
|
|
bimap = "0.6.0"
|
2021-03-07 21:29:59 +01:00
|
|
|
clap = "3.0.0-beta.2"
|
|
|
|
derive_more = "0.99.11"
|
|
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = ["llvm11-0"] }
|
2021-03-08 06:04:44 +01:00
|
|
|
itertools = "0.10.0"
|
2021-03-14 03:57:27 +01:00
|
|
|
lazy_static = "1.4.0"
|
2021-03-07 21:29:59 +01:00
|
|
|
llvm-sys = "110.0.1"
|
|
|
|
nom = "6.1.2"
|
|
|
|
nom-trace = { git = "https://github.com/glittershark/nom-trace", branch = "nom-6" }
|
|
|
|
pratt = "0.3.0"
|
|
|
|
proptest = "1.0.0"
|
|
|
|
test-strategy = "0.1.1"
|
|
|
|
thiserror = "1.0.24"
|
2021-03-20 23:14:23 +01:00
|
|
|
void = "1.0.2"
|
2021-03-14 21:43:47 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
crate-root = "0.1.3"
|
2021-03-28 19:28:49 +02:00
|
|
|
pretty_assertions = "0.7.1"
|