diff --git a/rust/README.md b/rust/README.md index 271be08eb..9f3bade84 100644 --- a/rust/README.md +++ b/rust/README.md @@ -2,7 +2,7 @@ [![API](https://docs.rs/libnotcurses-sys/badge.svg)](https://dankamongmen.github.io/notcurses/rustdoc/libnotcurses_sys/) [![MSRV: 1.48.0](https://flat.badgen.net/badge/MSRV/1.48.0/purple)](https://blog.rust-lang.org/2020/11/19/Rust-1.48.html) -`libnotcurses-sys` is a Rust wrapper for the +`libnotcurses-sys` is a low-level Rust wrapper for the [notcurses C library](https://www.github.com/dankamongmen/notcurses/) This library is built with several layers of zero-overhead abstractions @@ -102,4 +102,5 @@ fn main() { - [USAGE.md](https://github.com/dankamongmen/notcurses/blob/master/USAGE.md) - [HACKING.md](https://github.com/dankamongmen/notcurses/blob/master/doc/HACKING.md) - [Doxygen Documentation](https://nick-black.com/notcurses/html/index.html) +- [FOSDEM 2021 presentation](https://fosdem.org/2021/schedule/event/notcurses/) diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 3fb84f052..6e0a58f0c 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -1,4 +1,4 @@ -//! `libnotcurses-sys` is a Rust wrapper for the [notcurses +//! `libnotcurses-sys` is a low-level Rust wrapper for the [notcurses //! C library](https://www.github.com/dankamongmen/notcurses/) //! //! *This is a work in progress.* @@ -104,6 +104,7 @@ //! - [USAGE.md](https://github.com/dankamongmen/notcurses/blob/master/USAGE.md) //! - [HACKING.md](https://github.com/dankamongmen/notcurses/blob/master/doc/HACKING.md) //! - [Doxygen Documentation](https://nick-black.com/notcurses/html/index.html) +//! - [FOSDEM 2021 presentation](https://fosdem.org/2021/schedule/event/notcurses/) //! #![allow(non_upper_case_globals, non_camel_case_types, non_snake_case)] #![allow(clippy::too_many_arguments, clippy::needless_doctest_main)]