meli/testing/Cargo.toml
Manos Pitsidianakis 5b679be782
text_processing: implement Unicode line breaking algorithm
Not conforming to the unicode standard yet
2019-07-27 01:56:07 +03:00

19 lines
384 B
TOML

[package]
name = "testing"
version = "0.0.1" #:version
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
workspace = ".."
edition = "2018"
[[bin]]
name = "emailparse"
path = "src/email_parse.rs"
[[bin]]
name = "linebreak"
path = "src/linebreak.rs"
[dependencies]
melib = { path = "../melib", version = "*" }
text_processing = { path = "../text_processing", version = "*" }