appit/Cargo.toml
Jonathan Johnson c036093bee
Updating readme
2023-12-18 09:41:52 -08:00

20 lines
583 B
TOML

[package]
name = "appit"
version = "0.1.0"
edition = "2021"
description = "A math library specialized for 2d screen graphics."
repository = "https://github.com/khonsulabs/appit"
license = "MIT OR Apache-2.0"
keywords = ["windowing", "winit"]
categories = ["gui"]
readme = "./README.md"
[features]
default = ["x11", "wayland", "wayland-dlopen"]
wayland-csd-adwaita = ["winit/wayland-csd-adwaita"]
x11 = ["winit/x11"]
wayland = ["winit/wayland"]
wayland-dlopen = ["winit/wayland-dlopen"]
[dependencies]
winit = { version = "0.29.3", default-features = false, features = ["rwh_05"] }