abletk/Cargo.toml

23 lines
532 B
TOML
Raw Permalink Normal View History

2022-04-16 17:18:23 +00:00
[package]
name = "abletk"
version = "0.1.0"
edition = "2021"
2022-04-16 17:25:56 +00:00
license = "MPL-2.0"
2022-04-16 17:18:23 +00: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",
"abletk-cairo",
2022-04-16 17:18:23 +00:00
"abletk-common",
"abletk-direct2d",
]