forked from redox-os/orbtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (57 loc) · 1.68 KB
/
Cargo.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "orbtk"
version = "0.3.1-alpha3"
authors = [
"Florian Blasius <[email protected]>",
"Jeremy Soller <[email protected]>"
]
description = "The Orbital Widget Toolkit"
documentation = "https://docs.rs/orbtk"
repository = "https://github.com/redox-os/orbtk"
readme = "README.md"
license = "MIT"
keywords = [
"orbital",
"redox",
"ui",
]
edition = "2018"
[lib]
name = "orbtk"
path = "src/lib.rs"
[profile.dev]
opt-level = 1
[dependencies]
orbtk-proc-macros = { version = "0.3.1-alpha3", path = "crates/proc-macros" }
orbtk-api = { version = "0.3.1-alpha3", path = "crates/api" }
orbtk-render = { version = "0.3.1-alpha3", path = "crates/render" }
orbtk-shell = { version = "0.3.1-alpha3", path = "crates/shell" }
orbtk-theme = { version = "0.3.1-alpha3", path="crates/theme" }
orbtk-theming = { version = "0.3.1-alpha3", path="crates/theming" }
orbtk-utils = { version = "0.3.1-alpha3", path = "crates/utils" }
orbtk-tree = { version = "0.3.1-alpha3", path="crates/tree" }
orbtk-widgets = { version = "0.3.1-alpha3", path="crates/widgets" }
dces = { git = "https://gitlab.redox-os.org/redox-os/dces-rust.git", branch = "develop" }
[dev-dependencies]
euc = "0.5.0"
vek = "0.10.2"
serde = "1.0.106"
serde_derive = "1.0.106"
# [target.'cfg(all(not(target_arch = "wasm32"), not(target_os = "redox")))'.dev-dependencies]
# wgpu = "0.5.0"
[features]
debug = ["orbtk-api/debug"]
pathfinder = ["orbtk-shell/pfinder", "orbtk-render/pfinder"]
log = ["orbtk-shell/log"]
[workspace]
members = [
"crates/utils",
"crates/tree",
"crates/proc-macros",
"crates/api",
"crates/render",
"crates/shell",
"crates/theme",
"crates/theming",
"crates/widgets",
]