1 | [package]
|
2 | name = "ptr_meta"
|
3 | version = "0.2.0"
|
4 | authors = ["David Koloski <djkoloski@gmail.com>" ]
|
5 | edition = "2018"
|
6 | description = "A radioactive stabilization of the ptr_meta rfc"
|
7 | license = "MIT"
|
8 | documentation = "https://docs.rs/ptr_meta"
|
9 | repository = "https://github.com/djkoloski/ptr_meta"
|
10 | keywords = ["ptr" , "meta" , "no_std" ]
|
11 | categories = ["no-std" ]
|
12 | readme = "crates-io.md"
|
13 |
|
14 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
15 |
|
16 | [dependencies]
|
17 | ptr_meta_derive = { version = "=0.2.0" , path = "../ptr_meta_derive" }
|
18 |
|
19 | [features]
|
20 | default = ["std" ]
|
21 | std = []
|
22 | |