1 | [package] |
2 | name = "pretty-hex" |
3 | version = "0.4.1" |
4 | authors = ["Andrei Volnin <wolandr@gmail.com>" ] |
5 | license = "MIT" |
6 | description = "Pretty hex dump of bytes slice in the common style." |
7 | readme = "README.md" |
8 | homepage = "https://github.com/wolandr/pretty-hex" |
9 | repository = "https://github.com/wolandr/pretty-hex" |
10 | documentation = "https://docs.rs/pretty-hex" |
11 | categories = ["development-tools::debugging" , "no-std" ] |
12 | keywords = ["logging" , "hex" , "dump" , "binary" ] |
13 | |
14 | [dependencies] |
15 | |
16 | [dev-dependencies] |
17 | heapless = "0.8" |
18 | |
19 | [features] |
20 | default = ["alloc" ] |
21 | alloc = [] |
22 | |