5 releases

0.1.4 May 24, 2024
0.1.3 Apr 7, 2023
0.1.2 Apr 6, 2023
0.1.1 Nov 9, 2022
0.1.0 Nov 7, 2022

#42 in #cursor

Download history 85/week @ 2024-06-06 121/week @ 2024-06-13 102/week @ 2024-06-20 123/week @ 2024-06-27 136/week @ 2024-07-04 93/week @ 2024-07-11 77/week @ 2024-07-18 118/week @ 2024-07-25 82/week @ 2024-08-01 115/week @ 2024-08-08 81/week @ 2024-08-15 96/week @ 2024-08-22 137/week @ 2024-08-29 193/week @ 2024-09-05 191/week @ 2024-09-12 107/week @ 2024-09-19

642 downloads per month
Used in xcb-util-cursor

MIT/Apache

7KB

xcb-util-cursor

github crates.io docs.rs build status crates.io

xcb-util-cursor is a safe rust interface for libxcb-cursor. It depends on rust-xcb and uses their types.

# Cargo.toml
[dependencies]
xcb = "1.4.0"
xcb-util-cursor = "0.3.3"
use xcb_util_cursor::{Cursor, CursorContext};

let (connection, _) = xcb::Connection::connect(None).unwrap();
let setup = connection.get_setup();
let screen = setup.roots().next().unwrap();

let cursor_context = CursorContext::new(&connection, screen).unwrap();

let left_ptr = cursor_context.load_cursor(Cursor::LeftPtr);

Dependencies

~0.6–2.7MB
~55K SLoC