forked from marc2332/freya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
84 lines (73 loc) · 3.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "examples"
version = "0.0.0"
edition = "2021"
[workspace]
members = ["crates/renderer", "crates/state", "crates/freya", "crates/elements", "crates/components", "crates/hooks", "crates/common", "crates/core", "crates/testing", "crates/devtools", "crates/dom", "crates/torin", "crates/engine", "./examples/installer"]
[features]
log = ["freya/log"]
devtools = ["freya/devtools"]
use_camera = ["freya/use_camera"]
[workspace.dependencies]
freya = { path = "crates/freya", version = "0.1" }
freya-devtools = { path = "crates/devtools", version = "0.1" }
freya-node-state = { path = "crates/state", version = "0.1" }
freya-renderer = { path = "crates/renderer", version = "0.1" }
freya-elements = { path = "crates/elements", version = "0.1" }
freya-common = { path = "crates/common", version = "0.1" }
freya-hooks = { path = "crates/hooks", version = "0.1" }
freya-core = { path = "crates/core", version = "0.1" }
freya-components = { path = "crates/components", version = "0.1" }
freya-dom = { path = "crates/dom", version = "0.1" }
freya-testing = { path = "crates/testing", version = "0.1" }
freya-engine = { path = "crates/engine", version = "0.1" }
torin = { path = "crates/torin", version = "0.1" }
dioxus = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1", default-features = false, features = ["macro", "signals", "hooks", "hot-reload", "html"]}
dioxus-native-core-macro = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1" }
dioxus-rsx = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1", features = ["hot_reload"] }
dioxus-native-core = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1", features = ["dioxus"] }
dioxus-core-macro = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1" }
dioxus-hooks = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1" }
dioxus-signals = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1" }
dioxus-core = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1" }
dioxus-hot-reload = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1", features = ["file_watcher"], default-features = false }
dioxus-router = { git = "https://github.com/DioxusLabs/dioxus", rev = "a454f2c7ac239933bb4d5cd184c8a549190070f1", default-features = false }
dioxus-std = { git = "https://github.com/marc2332/dioxus-std", rev = "2e111cda95f816fe4232bae5e75515a58afa4a1e", features = ["clipboard"] }
skia-safe = { version = "0.70.0", features = ["gl", "textlayout", "svg"] }
gl = "0.14.0"
glutin = "0.31.2"
glutin-winit = "0.4.2"
raw-window-handle = "0.5.2"
winit = "0.29.9"
tokio = { version = "1.33.0", features = ["sync", "rt-multi-thread", "time", "macros"] }
accesskit = { version = "0.12.2", features = ["serde"]}
accesskit_winit = "0.18.0"
euclid = "0.22.9"
uuid = { version = "1.4.1", features = ["v4"]}
futures-util = "0.3.30"
futures-task = "0.3.30"
tracing = "0.1"
tracing-subscriber = "0.3.17"
rustc-hash = "1.1.0"
[dev-dependencies]
skia-safe = { workspace = true }
winit = { workspace = true }
tokio = { workspace = true }
dioxus = { workspace = true }
dioxus-core = { workspace = true }
freya = { workspace = true }
freya-node-state = { workspace = true }
freya-core = { workspace = true }
reqwest = { version = "0.11.22", features = ["json"] }
serde = "1.0.189"
tracing-subscriber = "0.3.17"
dioxus-std = { git = "https://github.com/marc2332/dioxus-std", rev = "2e111cda95f816fe4232bae5e75515a58afa4a1e", features = ["i18n"] }
rand = "0.8.5"
dioxus-router = { workspace = true }
itertools = "0.11.0"
[profile.release]
lto = true
opt-level = 3
[target."cfg(target_os = \"linux\")".dependencies.skia-safe]
workspace = true
features = ["gl", "textlayout", "svg", "x11", "wayland"]