-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (36 loc) · 1.1 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
[package]
name = "iced_wayland_input_method"
version = "0.1.0"
edition = "2021"
[features]
system = ["sysinfo"]
application = []
multi_window = []
default = ["calloop", "xkbcommon"]
calloop = []
xkbcommon = ["dep:xkbcommon"]
[dependencies]
log = "0.4"
tracing = "0.1"
thiserror = "1.0"
sctk = { package = "smithay-client-toolkit", git = "https://github.com/smithay/client-toolkit", rev = "dc8c4a0" }
wayland-protocols = { version = "0.31.0", features = [ "staging"]}
wayland-protocols-misc = { version = "0.2.0", features = ["client"] }
raw-window-handle = "0.5"
enum-repr = "0.2"
futures = "0.3"
wayland-backend = {version = "0.3.1", features = ["client_system"]}
float-cmp = "0.9"
smithay-clipboard = "0.6"
accesskit = { version = "0.12", optional = true }
itertools = "0.10"
bytemuck = { version = "1.14.0", optional = true }
xkbcommon = { version = "0.6", optional = true, features = ["wayland"] }
xkeysym = "0.2.0"
lazy_static = "1.4.0"
iced_runtime = "0.1"
iced_style = "0.9"
iced_graphics = "0.9"
iced_futures = "0.7"
sysinfo = { version = "0.28", optional = true }
accesskit_unix = { version = "0.6", optional = true }