rust/Cargo.toml

17 lines
317 B
TOML
Raw Normal View History

2017-12-28 23:55:16 +03:00
[package]
name = "libsyntax2"
version = "0.1.0"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
2018-01-10 21:58:38 +03:00
license = "MIT OR Apache-2.0"
2017-12-28 23:55:16 +03:00
2018-02-03 12:51:06 +03:00
[workspace]
2018-07-30 16:16:58 +03:00
members = [ "tools", "cli" ]
2018-02-03 12:51:06 +03:00
2017-12-29 01:21:54 +03:00
[dependencies]
2017-12-29 23:33:04 +03:00
unicode-xid = "0.1.0"
2018-07-28 13:07:10 +03:00
text_unit = "0.1.1"
2018-07-30 23:45:10 +03:00
itertools = "0.7.5"
2017-12-29 23:33:04 +03:00
2017-12-29 01:21:54 +03:00
[dev-dependencies]
2018-01-27 18:31:23 -05:00
testutils = { path = "./tests/testutils" }