abletk/Cargo.toml

23 lines
532 B
TOML
Executable File

[package]
name = "abletk"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
# 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",
"abletk-cairo",
"abletk-common",
"abletk-direct2d",
]