[package] name = "rustwtxt" version = "0.1.5" authors = ["Ben Morrison "] edition = "2018" description = "Library that makes working with twtxt.txt files easier." documentation = "https://docs.rs/rustwtxt" repository = "https://github.com/rustwtxt/rustwtxt" readme = "README.md" keywords = ["twtxt", "microblogging", "microblog", "tweet"] categories = ["parsing", "text-processing", "web-programming"] license = "ISC" [badges] travis-ci = { repository = "rustwtxt/rustwtxt", branch = "master" } codecov = { repository = "rustwtxt/rustwtxt", branch = "master", service = "github" } maintenance = { status = "experimental" } [dependencies] failure = "^0.1.6" regex = "1" ureq = "^0.11.3" [profile.release] opt-level = 'z' lto = true debug = false rpath = false debug-assertions = false overflow-checks = false [profile.dev] opt-level = 0 lto = false debug = true rpath = false debug-assertions = true overflow-checks = true [profile.bench] opt-level = 3 lto = true debug = false debug-assertions = false rpath = false overflow-checks = false