mirror of
https://github.com/danbulant/appit
synced 2026-05-19 04:08:34 +00:00
24 lines
660 B
TOML
24 lines
660 B
TOML
[package]
|
|
name = "appit"
|
|
version = "0.3.1"
|
|
edition = "2021"
|
|
rust-version = "1.70.0"
|
|
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"]
|
|
wayland-csd-adwaita = ["winit/wayland-csd-adwaita"]
|
|
x11 = ["winit/x11"]
|
|
wayland = ["winit/wayland"]
|
|
wayland-dlopen = ["winit/wayland-dlopen"]
|
|
rwh_06 = ["winit/rwh_06"]
|
|
rwh_05 = ["winit/rwh_05"]
|
|
|
|
|
|
[dependencies]
|
|
winit = { version = "0.30.0", default-features = false }
|