schala/schala-lang/Cargo.toml

26 lines
538 B
TOML
Raw Normal View History

2018-03-23 18:43:43 -07:00
[package]
name = "schala-lang"
version = "0.1.0"
authors = ["greg <greg.shuflin@protonmail.com>"]
2021-10-21 12:37:29 -07:00
edition = "2021"
2018-03-23 18:43:43 -07:00
[dependencies]
2021-10-07 00:51:45 -07:00
itertools = "0.10"
take_mut = "0.2.2"
failure = "0.1.5"
2019-02-23 00:34:44 -08:00
ena = "0.11.0"
2019-05-21 02:06:34 -07:00
stopwatch = "0.0.7"
2019-09-18 01:58:38 -07:00
derivative = "1.0.3"
2019-09-25 02:28:24 -07:00
colored = "1.8"
2019-10-17 03:15:39 -07:00
radix_trie = "0.1.5"
2021-10-19 19:19:21 -07:00
assert_matches = "1.5"
2021-11-04 22:31:29 -07:00
#peg = "0.7.0"
peg = { git = "https://github.com/kevinmehall/rust-peg", rev = "960222580c8da25b17d32c2aae6f52f902728b62" }
2018-03-23 18:43:43 -07:00
2021-11-14 03:47:18 -08:00
schala-repl = { path = "../schala-repl" }
2021-10-25 23:34:17 -07:00
[dev-dependencies]
test-case = "1.2.0"
pretty_assertions = "1.0.0"