Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

Commit b2ee187

Browse files
CI: document the new gdkwayland crates (#719)
* CI: document the new gdkwayland crates
1 parent 6eec925 commit b2ee187

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions-rs/cargo@v1
3939
with:
4040
command: doc
41-
args: -p atk -p atk-sys -p gdk -p gdk-sys -p gdkx11 -p gdkx11-sys -p gtk -p gtk3-macros -p gtk-sys --features dox --no-deps
41+
args: -p atk -p atk-sys -p gdk -p gdk-sys -p gdkx11 -p gdkx11-sys -p gtk -p gtk3-macros -p gtk-sys -p gdkwayland -p gdkwayland-sys --features dox --no-deps
4242
- run: echo "RELEASE=$(echo '${{ github.event.release.tag_name }}' | grep -Po '(\d+)\.(\d+)')" >> ${GITHUB_ENV}
4343
- run: echo "DEST=$(if [ "$GITHUB_EVENT_NAME" == "release" ]; then echo 'stable/${{ env.RELEASE }}'; else echo 'git'; fi)" >> ${GITHUB_ENV}
4444
- name: Grab gtk-rs LOGO

gdkwayland/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Take a look at the license at the top of the repository in the LICENSE file.
22

3+
#![cfg_attr(feature = "dox", feature(doc_cfg))]
34
#![doc = include_str!("../README.md")]
45

56
pub use ffi;

gdkwayland/sys/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![cfg_attr(feature = "dox", feature(doc_cfg))]
2+
13
use gdk::{GdkAtom, GdkDevicePadFeature};
24
use glib::{gpointer, GType};
35
use libc::{c_char, c_int, c_uint};

0 commit comments

Comments
 (0)