[package] name = "dtd-rs" version = "0.1.0-alpha2" edition = "2018" authors = ["songww "] description = "A DTD file parser." documentation = "https://docs.rs/dtd-parser" homepage = "https://github.com/songww/dtd-rs" keywords = ["dtd", "xml", "document", "type", "definition"] license = "MIT OR Apache-2.0" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "dtd" [dependencies] dtd-macro = { version = "0.1.0-alpha2", path = "./dtd-macro" } dtd-parser = { version = "0.1.0-alpha3", path = "./dtd-parser" } [features] default = [] trace = ["dtd-parser/trace"] [workspace] members = [ "dtd-macro", "dtd-parser" ]