-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
43 lines (40 loc) · 1.13 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
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: 2025 Fundament Software SPC <https://fundament.software>
[workspace]
members = [
"feather-ui",
"examples/basic-rs",
"examples/basic-alc",
"examples/paragraph-rs",
"examples/graph-rs",
]
resolver = "2"
default-members = [
"feather-ui",
"examples/basic-alc",
"examples/basic-rs",
"examples/paragraph-rs",
]
[workspace.package]
version = "0.1.2"
edition = "2021"
rust-version = "1.77.0"
license = "Apache-2.0"
homepage = "https://github.com/Fundament-Software/feathergui"
repository = "https://github.com/Fundament-Software/feathergui/"
readme = "README.md"
[workspace.dependencies]
im = "15.1"
wgpu = "22"
winit = "0.30"
color-eyre = "0.6"
eyre = "0.6"
ultraviolet = "0.9"
rand = { version = "0.8.5", features = ["std_rng"] }
tracing-subscriber = { version = "0.3.18", features = ["time"] }
tracing = "0.1.40"
tokio = { version = "1.40", features = ["rt", "macros", "tracing", "signal"] }
feather-ui = { path = "feather-ui" }
alicorn = { git = "https://github.com/Fundament-Software/Alicorn0" }
mlua = { version = "0.9.9", features = ["luajit52", "vendored"] }
glyphon = "0.6.0"