forked from geom3trik/tuix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 784 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "tuix"
description = "Cross-platform GUI toolkit"
version = "0.1.0"
authors = ["George Atkinson"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["ui", "gui", "gpu", "graphics", "css"]
repository = "https://github.com/geom3trik/tuix"
edition = "2018"
[workspace]
members = [
"glutin",
"baseview",
"core",
]
[features]
default = ["glutin"]
glutin = ["tuix_glutin"]
baseview = ["tuix_baseview"]
[dependencies]
tuix_core = { version = "0.1.0", path = "core" }
tuix_glutin = { version = "0.1.0", path = "glutin", optional = true }
tuix_baseview = { version = "0.1.0", path = "baseview", optional = true }
[dev-dependencies]
femtovg = { git = "https://github.com/femtovg/femtovg", branch = "master", default-features = false }
image = "0.23.12"