[package] name = "xspf" version = "0.4.0" authors = ["binarycat "] edition = "2021" description = "straightforward pure rust implementation of the Xml Sharable Playlist Format" readme = "README.md" repository = "https://git.envs.net/binarycat/xspf" license = "MIT" keywords = ["xspf", "xml", "playlist"] categories = ["encoding", "parsing"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["print", "parse", "setters"] print = [] parse = [] setters = [] [dependencies] xml = "0.8.10" [[example]] name = "playlist-append" path = "example/playlist-append.rs"