5 releases

new 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

#33 in #cursor

Download history 11/week @ 2024-02-25 7/week @ 2024-03-03 5/week @ 2024-03-10 1/week @ 2024-03-17 13/week @ 2024-03-31 65/week @ 2024-04-28 10/week @ 2024-05-05 29/week @ 2024-05-12 228/week @ 2024-05-19

332 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.6MB
~54K SLoC