|
7 | 7 | //! important UEFI concepts. For more details of UEFI, see the latest [UEFI
|
8 | 8 | //! Specification][spec].
|
9 | 9 | //!
|
10 |
| -//! Feel free to file bug reports and questions in our [issue tracker], and [PR |
11 |
| -//! contributions][contributing] are also welcome! |
12 |
| -//! |
13 | 10 | //! # Interaction with uefi services
|
14 | 11 | //!
|
15 | 12 | //! With this crate you can write code for the pre- and post-exit boot services
|
|
80 | 77 | //! only unfold their potential when you invoke `uefi::helpers::init` as soon
|
81 | 78 | //! as possible in your application.
|
82 | 79 | //!
|
| 80 | +//! # Discuss and Contribute |
| 81 | +//! |
| 82 | +//! For general discussions, feel free to join us in our [Zulip] and ask |
| 83 | +//! your questions there. |
| 84 | +//! |
| 85 | +//! Further, you can submit bugs and also ask questions in our [issue tracker]. |
| 86 | +//! Contributions in the form of a PR are also highly welcome. Check our |
| 87 | +//! [contributing guide][contributing] for details. |
| 88 | +//! |
| 89 | +//! # MSRV |
| 90 | +//! <!-- Keep in Sync with README! --> |
| 91 | +//! |
| 92 | +//! The minimum supported Rust version is currently 1.70. |
| 93 | +//! Our policy is to support at least the past two stable releases. |
| 94 | +//! |
| 95 | +//! # License |
| 96 | +//! <!-- Keep in Sync with README! --> |
| 97 | +//! |
| 98 | +//! The code in this repository is licensed under the Mozilla Public License 2. |
| 99 | +//! This license allows you to use the crate in proprietary programs, but any |
| 100 | +//! modifications to the files must be open-sourced. |
| 101 | +//! |
| 102 | +//! The full text of the license is available in the [license file][LICENSE]. |
| 103 | +//! |
| 104 | +//! [LICENSE]: https://github.com/rust-osdev/uefi-rs/blob/main/uefi/LICENSE |
83 | 105 | //! [Rust UEFI Book]: https://rust-osdev.github.io/uefi-rs/HEAD/
|
84 | 106 | //! [UEFI]: https://uefi.org/
|
| 107 | +//! [Zulip]: https://rust-osdev.zulipchat.com |
85 | 108 | //! [`BootServices`]: table::boot::BootServices
|
86 | 109 | //! [`GlobalAlloc`]: alloc::alloc::GlobalAlloc
|
87 | 110 | //! [`SystemTable`]: table::SystemTable
|
|
0 commit comments