diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2019-01-11 00:57:23 +0100 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2019-01-11 00:57:23 +0100 |
commit | 27834815893eca768f64c4fb9c5a85d42dea60e6 (patch) | |
tree | 0406231598c99429c82ca314afd13ec8c002a19c | |
parent | dad9b384427e0305f677c56f63cccaedd47eb595 (diff) | |
download | dialog-rs-27834815893eca768f64c4fb9c5a85d42dea60e6.tar.gz dialog-rs-27834815893eca768f64c4fb9c5a85d42dea60e6.tar.bz2 |
Document the Zenity backend in the crate comment
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -15,6 +15,8 @@ //! These dialog boxes can be displayed using various backends: //! - [`Dialog`][]: uses `dialog` to display ncurses-based dialog boxes (requires the external //! `dialog` tool) +//! - [`Zenity`][]: uses `zenity` to display GTK-based dialog boxes (requires the external `zenity` +//! tool) //! //! You can let `dialog` choose the backend by calling the [`show`][] method on a dialog box. If //! you want to choose the backend yourself, create a backend instance and pass it to |