[package] name = "generic-json" version = "0.7.0" authors = ["Timothée Haudebourg "] edition = "2018" categories = ["data-structures"] keywords = ["json", "trait"] description = "Generic JSON traits" repository = "https://github.com/timothee-haudebourg/generic-json" documentation = "https://docs.rs/generic-json" license = "MIT/Apache-2.0" readme = "README.md" [features] nightly = [] smallkey = [ "smallvec", "smallstr" ] ijson-impl = ["ijson", "cc-traits/ijson"] serde_json-impl = ["serde_json", "cc-traits/serde_json"] [dependencies] cc-traits = "0.7.3" smallstr = { version = "0.2", optional = true } smallvec = { version = "1.7", optional = true } ijson = { version = "0.1", optional = true } serde_json = { version = "1.0.69", optional = true }