[package] name = "marc" version = "3.1.1" authors = ["AIkorsky "] description = "Reader and builder for MARC 21 Bibliographic format" license = "MIT/Apache-2.0" repository = "https://github.com/blackbeam/rust-marc" documentation = "https://blackbeam.github.io/rust-marc" readme = "README.md" keywords = ["MARC", "MARC21", "bibliographic", "parser", "builder"] exclude = [".*", "test"] edition = "2021" [lib] name = "marc" path = "src/lib.rs" [features] default = [] nightly = [] xml = ["dep:xml-rs"] [dependencies] xml-rs = { version = "0.8", optional = true } [package.metadata.docs.rs] rustdoc-args = ["--cfg", "docsrs"] no-default-features = true features = ["default", "xml"]