-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (41 loc) · 1016 Bytes
/
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
[package]
name = "rsact"
version = "0.1.0"
edition = "2021"
[dependencies]
# rsact-reactive = {path = "./rsact-reactive", features = ["single-thread"]}
rsact-encoder = {path = "./rsact-encoder"}
rsact-ui = {path = "./rsact-ui"}
[workspace]
resolver = "2"
members = [
"rsact-ui",
"rsact-reactive",
"rsact-encoder",
"rsact-icons",
"rsact-widgets"
]
authors = ["hazer-hazer"]
repository = "https://github.com/hazer-hazer/rsact"
license = "MIT"
exclude = ["examples"]
[workspace.package]
edition = "2021"
version = "0.1.0"
[workspace.dependencies]
rsact-reactive = { path = "./rsact-reactive" }
rsact-ui = { path = "./rsact-ui" }
rsact-encoder = {path = "./rsact-encoder"}
[profile.dev]
# opt-level = 0
debug = "full"
[features]
std = ["rsact-ui/std"]
single-thread = ["rsact-ui/single-thread"]
# [profile.sandbox]
# inherits = "dev"
# opt-level = 3
# [profile.dev.package."embedded-graphics-simulator"]
# opt-level = 3
# [profile.test.package."embedded-graphics-simulator"]
# opt-level = 3