rust/Cargo.toml

17 lines
317 B
TOML
Raw Normal View History

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