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