1[package] 2name = "der_derive" 3version = "0.6.1" 4description = "Custom derive support for the `der` crate's `Choice` and `Sequence` traits" 5authors = ["RustCrypto Developers"] 6license = "Apache-2.0 OR MIT" 7documentation = "https://docs.rs/der" 8repository = "https://github.com/RustCrypto/formats/tree/master/der/derive" 9categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"] 10keywords = ["asn1", "der", "crypto", "itu", "pkcs"] 11readme = "README.md" 12edition = "2021" 13rust-version = "1.56" 14 15[lib] 16proc-macro = true 17 18[dependencies] 19proc-macro2 = "1" 20proc-macro-error = "1" 21quote = "1" 22syn = { version = "1.0.58", features = ["extra-traits"] } 23