|
5 | 5 | //! [`ndd::NonDeDuplicated`]: crate::NonDeDuplicated |
6 | 6 | //! [`ndd::NonDeDuplicatedStr`]: crate::NonDeDuplicatedStr |
7 | 7 | //! [`ndd::NonDeDuplicatedCStr`]: crate::NonDeDuplicatedCStr |
8 | | -//! |
| 8 | +//! [`src/lib.rs`]: https://github.com/peter-lyons-kehl/ndd/blob/main/src/lib.rs |
| 9 | +//! [`demo_fix/callee/src/lib.rs`]: https://github.com/peter-lyons-kehl/ndd/blob/main/demo_fix/callee/src/lib.rs |
9 | 10 | //! [`core::ptr::eq`]: core::ptr::eq |
10 | 11 | //! [`core::ptr::addr_eq`]: core::ptr::addr_eq |
| 12 | +//! [`src/lib.rs` -> `tests_without_ndd` -> `addresses_unique_between_statics()`]: https://github.com/peter-lyons-kehl/ndd/blob/main/src/lib.rs#L269 |
| 13 | +//! [`demo_bug/`]: https://github.com/peter-lyons-kehl/ndd/tree/main/demo_bug |
11 | 14 | //! [`core::cell::Cell`]: core::cell::Cell |
12 | 15 | //! [`core::marker::Sync`]: core::marker::Sync |
13 | 16 | //! [`core::marker::Send`]: core::marker::Send |
14 | 17 | //! [`std::sync::Mutex`]: std::sync::Mutex#impl-Sync-for-Mutex<T> |
| 18 | +//! [`src/lib.rs` -> `tests_with_ndd`]: https://github.com/peter-lyons-kehl/ndd/blob/main/src/lib.rs#L355 |
15 | 19 | //! [`alloc`]: alloc |
16 | 20 | //! [`core::ops::Drop`]: core::ops::Drop |
| 21 | +//! [`pre-commit`]: https://github.com/peter-lyons-kehl/ndd/blob/main/pre-commit |
| 22 | +//! [GitHub Actions]: https://github.com/peter-lyons-kehl/ndd/blob/main/.github/workflows/main.yml |
| 23 | +//! |
17 | 24 | //! [`core::cell::Cell::as_array_of_cells`]: core::cell::Cell::as_array_of_cells |
18 | 25 | //! [`core::ops::Deref`]: core::ops::Deref |
19 | 26 | //! [`core::convert::From`]: core::convert::From |
| 27 | +//! |
| 28 | +//! [`demo_bug/non_lto`]: https://github.com/peter-lyons-kehl/ndd/tree/main/demo_bug/non_lto/ |
| 29 | +//! [`demo_bug/fat_lto`]: https://github.com/peter-lyons-kehl/ndd/tree/main/demo_bug/fat_lto/ |
| 30 | +//! [`demo_fix/fat_lto`]: https://github.com/peter-lyons-kehl/ndd/tree/main/demo_fix/fat_lto/ |
| 31 | +//! [`non_dedup.sh`]: https://github.com/peter-lyons-kehl/ndd/blob/main/demo_shared_scripts//non_dedup.sh |
| 32 | +//! [`dedup_out.sh`]: https://github.com/peter-lyons-kehl/ndd/blob/main/demo_shared_scripts//dedup_out.sh |
| 33 | +//! [`liter_str`]: https://github.com/peter-lyons-kehl/ndd/blob/main/demo_shared_src/liter_str.rs |
| 34 | +//! [`const_str`]: https://github.com/peter-lyons-kehl/ndd/blob/main/demo_shared_src/const_str.rs |
| 35 | +//! [`const_opt`]: https://github.com/peter-lyons-kehl/ndd/blob/main/demo_shared_src/const_opt.rs |
| 36 | +//! [`const_u8s`]: https://github.com/peter-lyons-kehl/ndd/blob/main/demo_shared_src/const_u8s.rs |
20 | 37 | #![doc = include_str!("../README.md")] |
21 | 38 | #![cfg_attr(not(any(doc, test)), no_std)] |
22 | 39 | #[cfg(doc)] |
|
0 commit comments