[package] name = "microformats_parser" license = "AGPL-3.0" description = "A microformats parser" homepage = "https://rust.microformats.io/" repository = "https://gitlab.com/maxburon/microformats-parser" readme = "README.md" keywords = ["microformats", "indieweb"] categories = ["parser-implementations", "web-programming"] version = "0.2.0" authors = ["Jacky Alcine", "La Bécasse"] edition = "2018" build = "src/build.rs" [lib] name = "microformats_parser" path = "src/lib.rs" [[bin]] name = "microformats2" path = "src/bin.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] html5ever = "0.22.3" serde = { version = "1.0.127", features = ["derive"] } serde_json = "1.0.48" url = { version = "2.0", features = ["serde"] } chrono = { version = "0.4", features = ["serde"] } log = "0.4" thiserror = "1.0" regex = "1.5" lazy_static = "1.4.0" [dev-dependencies] assert-json-diff = "2.0.1" env_logger = "0.9" [profile.release] panic = 'abort' opt-level = 3 debug = false [profile.dev] opt-level = 0 debug = true panic = 'unwind' incremental = true