1 | [package] |
2 | name = "memoffset" |
3 | version = "0.9.0" |
4 | authors = ["Gilad Naaman <gilad.naaman@gmail.com>" ] |
5 | description = "offset_of functionality for Rust structs." |
6 | license = "MIT" |
7 | readme = "README.md" |
8 | repository = "https://github.com/Gilnaa/memoffset" |
9 | keywords = ["mem" , "offset" , "offset_of" , "offsetof" ] |
10 | categories = ["no-std" ] |
11 | |
12 | [build-dependencies] |
13 | autocfg = "1" |
14 | |
15 | [dev-dependencies] |
16 | doc-comment = "0.3" |
17 | |
18 | [features] |
19 | default = [] |
20 | unstable_const = [] |
21 | unstable_offset_of = [] |
22 | |