|
28 | 28 | clippy::map_err_ignore, |
29 | 29 | clippy::mem_forget, |
30 | 30 | clippy::missing_docs_in_private_items, |
31 | | - clippy::missing_inline_in_public_items, |
32 | 31 | clippy::modulo_arithmetic, |
33 | 32 | clippy::multiple_inherent_impl, |
34 | 33 | clippy::panic, |
|
86 | 85 | rustdoc::invalid_html_tags |
87 | 86 | )] |
88 | 87 |
|
89 | | -//! [![crates.io]](https://crates.io/crates/template_crate) |
90 | | -//! [![github]](https://github.com/steffahn/template_crate) |
91 | | -//! [![MIT / Apache 2.0 licensed]](https://github.com/steffahn/template_crate#License) |
| 88 | +//! [![crates.io]](https://crates.io/crates/existential) |
| 89 | +//! [![github]](https://github.com/steffahn/existential) |
| 90 | +//! [![MIT / Apache 2.0 licensed]](https://github.com/steffahn/existential#License) |
92 | 91 | //! [![unsafe forbidden]](https://github.com/rust-secure-code/safety-dance/) |
93 | 92 | //! |
94 | | -//! Module-level documentation goes here!! |
| 93 | +//! [Existential types](https://wiki.haskell.org/Existential_type) in Rust, offering existential |
| 94 | +//! quantification over lifetimes, but as a library. This works because Rust has |
| 95 | +//! [parametricity](https://en.wikipedia.org/wiki/Parametricity) for generic lifetime arguments. |
| 96 | +//! |
| 97 | +//! _Work in progress; this crate is still undocumented._ |
95 | 98 | //! |
96 | | -//! [github]: https://img.shields.io/badge/github-steffahn/template__crate-yellowgreen.svg |
97 | | -//! [crates.io]: https://img.shields.io/crates/v/template_crate.svg |
98 | | -//! [MIT / Apache 2.0 licensed]: https://img.shields.io/crates/l/template_crate.svg |
99 | | -//! [docs.rs]: https://docs.rs/template_crate/badge.svg |
| 99 | +//! [github]: https://img.shields.io/badge/github-steffahn/existential-yellowgreen.svg |
| 100 | +//! [crates.io]: https://img.shields.io/crates/v/existential.svg |
| 101 | +//! [MIT / Apache 2.0 licensed]: https://img.shields.io/crates/l/existential.svg |
| 102 | +//! [docs.rs]: https://docs.rs/existential/badge.svg |
100 | 103 | //! [unsafe forbidden]: https://img.shields.io/badge/unsafe-forbidden-success.svg |
0 commit comments