Guess I should put this under version control LOL
This commit is contained in:
commit
2035318460
73 changed files with 8836 additions and 0 deletions
19
lifecycle/Cargo.toml
Normal file
19
lifecycle/Cargo.toml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
[package]
|
||||
name = "alchemy-lifecycle"
|
||||
description = "A crate containing traits used in Alchemy, the Rust cross-platform GUI framework."
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = ["Ryan McGrath <ryan@rymc.io>"]
|
||||
license = "MPL-2.0+"
|
||||
repository = "https://github.com/ryanmcgrath/alchemy"
|
||||
categories = ["gui", "rendering::engine", "multimedia"]
|
||||
keywords = ["gui", "css", "styles", "layout", "ui"]
|
||||
|
||||
[features]
|
||||
cocoa = ["objc", "objc_id"]
|
||||
|
||||
[dependencies]
|
||||
alchemy-styles = { version = "0.1", path = "../styles" }
|
||||
objc = { version = "0.2.6", optional = true }
|
||||
objc_id = { version = "0.1.1", optional = true }
|
||||
serde_json = "1"
|
||||
Reference in a new issue