mirror of
https://github.com/danbulant/appit
synced 2026-07-07 03:51:08 +00:00
Updating readme
This commit is contained in:
parent
125e9f7c46
commit
c036093bee
2 changed files with 26 additions and 5 deletions
|
|
@ -2,7 +2,12 @@
|
||||||
name = "appit"
|
name = "appit"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
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]
|
[features]
|
||||||
default = ["x11", "wayland", "wayland-dlopen"]
|
default = ["x11", "wayland", "wayland-dlopen"]
|
||||||
|
|
|
||||||
24
README.md
24
README.md
|
|
@ -1,5 +1,9 @@
|
||||||
# appit
|
# appit
|
||||||
|
|
||||||
|

|
||||||
|
[](https://crates.io/crates/appit)
|
||||||
|
[](https://khonsulabs.github.io/appit/main/appit)
|
||||||
|
|
||||||
An opinionated wrapper for `winit` that provides a trait-based approach to
|
An opinionated wrapper for `winit` that provides a trait-based approach to
|
||||||
implementing multi-window applications.
|
implementing multi-window applications.
|
||||||
|
|
||||||
|
|
@ -33,8 +37,20 @@ fn main() {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Why not use this crate?
|
## Project Status
|
||||||
|
|
||||||
- Very new, largely untested.
|
This project is early in development as part of [Kludgine][kludgine] and
|
||||||
- Not all platforms support threads, and a single-window, single-thread code
|
[Gooey][gooey]. It is considered alpha and unsupported at this time, and the
|
||||||
path is not supported yet.
|
primary focus for [@ecton][ecton] is to use this for his own projects. Feature
|
||||||
|
requests and bug fixes will be prioritized based on @ecton's own needs.
|
||||||
|
|
||||||
|
If you would like to contribute, bug fixes are always appreciated. Before
|
||||||
|
working on a new feature, please [open an issue][issues] proposing the feature
|
||||||
|
and problem it aims to solve. Doing so will help prevent friction in merging
|
||||||
|
pull requests, as it ensures changes fit the vision the maintainers have for
|
||||||
|
Gooey.
|
||||||
|
|
||||||
|
[gooey]: https://github.com/khonsulabs/gooey
|
||||||
|
[kludgine]: https://github.com/khonsulabs/kludgine
|
||||||
|
[ecton]: https://github.com/khonsulabs/ecton
|
||||||
|
[issues]: https://github.com/khonsulabs/gooey/issues
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue