summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/src/revocation_status.rs
AgeCommit message (Collapse)Author
2020-10-14Replace most 'extern crate' directives with 'use'.Justus Winter
- See #480.
2020-02-19openpgp: Move RevocationStatus to module types.Justus Winter
2019-11-28Call TPKs Certificates, update identifiers, documentation.Justus Winter
- Fixes #387.
2019-07-15Prepare for Rust 2018.Justus Winter
- This is the result of running `cargo fix --edition`, with some manual adjustments. - The vast majority of changes merely qualify module paths with 'crate::'. - Two instances of adding an anonymous pattern to a trait's function. - `async` is a keyword in Rust 2018, and hence it needs to be escaped (e.g. in the case of the net::r#async module). - The manual adjustments were needed due to various shortcomings of the analysis employed by `cargo fix`, e.g. unexpanded macros, procedural macros, lalrpop grammars.
2019-05-09openpgp-ffi: Wrap RevocationStatus.Justus Winter