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

#59 in #cursor

Download history 178/week @ 2024-11-15 156/week @ 2024-11-22 103/week @ 2024-11-29 146/week @ 2024-12-06 166/week @ 2024-12-13 132/week @ 2024-12-20 85/week @ 2024-12-27 156/week @ 2025-01-03 270/week @ 2025-01-10 140/week @ 2025-01-17 109/week @ 2025-01-24 103/week @ 2025-01-31 148/week @ 2025-02-07 74/week @ 2025-02-14 105/week @ 2025-02-21 93/week @ 2025-02-28

438 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.7–2.7MB
~56K SLoC