[package] name = "xml_to_json" version = "0.1.0" authors = ["Andres Garcia "] edition = "2018" description = "Simple xml to json parser that internally uses serde_json" keywords = ["xml", "xml2json", "json", "xml_to_json", "serde_json"] license-file = "LICENSE" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0.102", features = ["derive"] } serde_json = "1.0.41" xml-rs = "0.8.0"