1 | [package] |
2 | name = "endi" |
3 | version = "1.1.0" |
4 | description = "A simple endian-handling library" |
5 | authors = ["Zeeshan Ali Khan <zeenix@gmail.com>" ] |
6 | repository = "https://github.com/zeenix/endi" |
7 | categories = ["encoding" , "parsing" , "no-std" ] |
8 | keywords = ["byte" , "endian" , "big-endian" , "little-endian" , "endianness" ] |
9 | license = "MIT" |
10 | rust-version = "1.60" |
11 | edition = "2021" |
12 | |
13 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
14 | [features] |
15 | default = ["std" ] |
16 | std = [] |
17 | |