#window #window-creation #window-manager #windowing #applications #cross-platform #android

tao

Cross-platform window manager library

81 releases (26 breaking)

new 0.27.1 Apr 22, 2024
0.26.2 Mar 26, 2024
0.24.0 Nov 20, 2023
0.21.1 Jul 30, 2023
0.4.0 Jul 14, 2021

#18 in GUI

Download history 23781/week @ 2024-01-02 24965/week @ 2024-01-09 28269/week @ 2024-01-16 26252/week @ 2024-01-23 28733/week @ 2024-01-30 23917/week @ 2024-02-06 28763/week @ 2024-02-13 33951/week @ 2024-02-20 39089/week @ 2024-02-27 35930/week @ 2024-03-05 33991/week @ 2024-03-12 34760/week @ 2024-03-19 35455/week @ 2024-03-26 37067/week @ 2024-04-02 34851/week @ 2024-04-09 28234/week @ 2024-04-16

141,855 downloads per month
Used in 83 crates (27 directly)

Apache-2.0

2.5MB
24K SLoC

TAO - Window Creation Library

License Chat Server website https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg support

Cross-platform application window creation library in Rust that supports all major platforms like Windows, macOS, Linux, iOS and Android. Built for you, maintained for Tauri.

Cargo Features

TAO provides the following features, which can be enabled in your Cargo.toml file:

  • serde: Enables serialization/deserialization of certain types with Serde.

Platform-specific notes

Android

This library makes use of the ndk-rs crates, refer to that repo for more documentation.

Running on an Android device needs a dynamic system library, add this to Cargo.toml:

[[example]]
name = "request_redraw_threaded"
crate-type = ["cdylib"]

And add this to the example file to add the native activity glue:

#[cfg_attr(target_os = "android", ndk_glue::main(backtrace = "on"))]
fn main() {
    ...
}

And run the application with cargo apk run --example request_redraw_threaded

Linux

Gtk and its related libraries are used to build the support of Linux. Be sure to install following packages before building:

Arch Linux / Manjaro:

sudo pacman -S gtk3

Debian / Ubuntu:

sudo apt install libgtk-3-dev

Acknowledgement

This is a fork of winit which replaces Linux's port to Gtk. In the future, we want to make these features more modular as separate crates. So we can switch back to winit and also benefit the whole community.

Partners

CrabNebula

For the complete list of sponsors please visit our website and Open Collective.

Dependencies

~2–52MB
~806K SLoC