forked from ilmai/plugin-things
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 955 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 955 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
32
[workspace]
resolver = "3"
members = [
"examples/*",
"plinth-core",
"plinth-derive",
"plinth-plugin",
"plugin-canvas",
"plugin-canvas-slint",
"xtask",
]
[workspace.dependencies]
plinth-core = { path = "plinth-core" }
plinth-derive = { path = "plinth-derive" }
plinth-plugin = { path = "plinth-plugin" }
plugin-canvas = { path = "plugin-canvas" }
plugin-canvas-slint = { path = "plugin-canvas-slint" }
cursor-icon = "1"
keyboard-types = "0.8"
num-traits = "0.2"
portable-atomic = { version = "1", default-features = false, features = ["float", "serde"] }
raw-window-handle = "0.6"
slint = { version = "^1.16.1", default-features = false, features = ["accessibility", "compat-1-2", "std"] }
tracing = "0.1"
# Internal slint crate versions need to be pinned
# since they don't maintain semver compatibility
i-slint-common = "^1.16.1"
i-slint-core = "^1.16.1"
i-slint-renderer-skia = { version = "^1.16.1", features = ["x11"] }