1[package] 2name = "hex" 3version = "0.4.3" 4authors = ["KokaKiwi <kokakiwi@kokakiwi.net>"] 5description = "Encoding and decoding data into/from hexadecimal representation." 6license = "MIT OR Apache-2.0" 7documentation = "https://docs.rs/hex/" 8repository = "https://github.com/KokaKiwi/rust-hex" 9edition = "2018" 10readme = "README.md" 11keywords = ["no_std", "hex"] 12categories = ["encoding", "no-std"] 13 14[badges] 15maintenance = { status = "actively-developed" } 16 17[features] 18default = ["std"] 19alloc = [] 20std = ["alloc"] 21 22[[bench]] 23name = "hex" 24harness = false 25 26[dependencies] 27serde = { version = "1.0", default-features = false, optional = true } 28 29[dev-dependencies] 30criterion = "0.3" 31rustc-hex = "2.1" 32faster-hex = "0.5" 33version-sync = "0.9" 34pretty_assertions = "0.6" 35serde = { version = "1.0", features = ["derive"] } 36serde_json = "1.0" 37 38[package.metadata.docs.rs] 39all-features = true 40rustdoc-args = ["--cfg", "docsrs"] 41