2022-04-16 12:18:23 -05:00
|
|
|
[package]
|
|
|
|
name = "abletk"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2022-04-16 12:25:56 -05:00
|
|
|
license = "MPL-2.0"
|
2022-04-16 12:18:23 -05:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
abletk-macros = { path = "./abletk-macros" }
|
|
|
|
abletk-common = { path = "./abletk-common" }
|
|
|
|
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }
|
|
|
|
winit = "0.26.1"
|
|
|
|
raw-window-handle = "0.4.3"
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"abletk-macros",
|
2022-05-21 07:30:06 -05:00
|
|
|
"abletk-cairo",
|
2022-04-16 12:18:23 -05:00
|
|
|
"abletk-common",
|
|
|
|
"abletk-direct2d",
|
|
|
|
]
|