Guess I should put this under version control LOL

This commit is contained in:
Ryan McGrath 2019-05-23 22:11:07 -07:00
commit 2035318460
No known key found for this signature in database
GPG key ID: 811674B62B666830
73 changed files with 8836 additions and 0 deletions

23
cocoa/src/lib.rs Normal file
View file

@ -0,0 +1,23 @@
//! This crate provides a Cocoa backend for Alchemy, the Rust GUI framework.
//! This means that, on macOS, you'll be using native `NSView`, `NSTextField`,
//! and other assorted controls. Where possible, it attempts to opt into
//! smoother rendering paths (e.g, layer-backed views, drawing subview layers
//! together where appropriate).
//!
//! # License
//!
//! Copyright 2018 Ryan McGrath. See the license files included in the root repository
//! for more information, along with credit to applicable parties for who this project
//! would not have happened.
//!
//! # Code of Conduct
//!
//! Please note that this project is released with a [Contributor Code of
//! Conduct][coc]. By participating in this project you agree to abide by its terms.
//!
//! [coc]: https://www.contributor-covenant.org/version/1/4/code-of-conduct
pub mod color;
pub mod app;
pub mod view;
pub mod window;