1 | [package] |
---|---|
2 | name = "openssl-macros" |
3 | version = "0.1.1" |
4 | edition = "2018" |
5 | license = "MIT/Apache-2.0" |
6 | description = "Internal macros used by the openssl crate." |
7 | |
8 | [lib] |
9 | proc-macro = true |
10 | |
11 | [dependencies] |
12 | proc-macro2 = "1" |
13 | quote = "1" |
14 | syn = { version = "2", features = [ "full"] } |
15 |