Skip to content

Commit 314e4e1

Browse files
committed
add .editorconfig for .toml files
1 parent 2490a27 commit 314e4e1

File tree

2 files changed

+29
-26
lines changed

2 files changed

+29
-26
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[*.toml]
2+
indent_style = space
3+
indent_size = 4

input-emulation/Cargo.toml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -15,35 +15,35 @@ input-event = { path = "../input-event", version = "0.3.0" }
1515
thiserror = "2.0.0"
1616
serde = { version = "1.0", features = ["derive"] }
1717
tokio = { version = "1.32.0", features = [
18-
"io-util",
19-
"io-std",
20-
"macros",
21-
"net",
22-
"process",
23-
"rt",
24-
"sync",
25-
"signal",
26-
"time",
18+
"io-util",
19+
"io-std",
20+
"macros",
21+
"net",
22+
"process",
23+
"rt",
24+
"sync",
25+
"signal",
26+
"time",
2727
] }
2828
once_cell = "1.19.0"
2929

3030
[target.'cfg(all(unix, not(target_os="macos")))'.dependencies]
3131
bitflags = "2.6.0"
3232
wayland-client = { version = "0.31.1", optional = true }
3333
wayland-protocols = { version = "0.32.1", features = [
34-
"client",
35-
"staging",
36-
"unstable",
34+
"client",
35+
"staging",
36+
"unstable",
3737
], optional = true }
3838
wayland-protocols-wlr = { version = "0.3.1", features = [
39-
"client",
39+
"client",
4040
], optional = true }
4141
wayland-protocols-misc = { version = "0.3.1", features = [
42-
"client",
42+
"client",
4343
], optional = true }
4444
x11 = { version = "2.21.0", features = ["xlib", "xtest"], optional = true }
4545
ashpd = { version = "0.11.0", default-features = false, features = [
46-
"tokio",
46+
"tokio",
4747
], optional = true }
4848
reis = { version = "0.5.0", features = ["tokio"], optional = true }
4949

@@ -54,22 +54,22 @@ keycode = "1.0.0"
5454

5555
[target.'cfg(windows)'.dependencies]
5656
windows = { version = "0.61.2", features = [
57-
"Win32_System_LibraryLoader",
58-
"Win32_System_Threading",
59-
"Win32_Foundation",
60-
"Win32_Graphics",
61-
"Win32_Graphics_Gdi",
62-
"Win32_UI_Input_KeyboardAndMouse",
63-
"Win32_UI_WindowsAndMessaging",
57+
"Win32_System_LibraryLoader",
58+
"Win32_System_Threading",
59+
"Win32_Foundation",
60+
"Win32_Graphics",
61+
"Win32_Graphics_Gdi",
62+
"Win32_UI_Input_KeyboardAndMouse",
63+
"Win32_UI_WindowsAndMessaging",
6464
] }
6565

6666
[features]
6767
default = ["wlroots", "x11", "remote_desktop_portal", "libei"]
6868
wlroots = [
69-
"dep:wayland-client",
70-
"dep:wayland-protocols",
71-
"dep:wayland-protocols-wlr",
72-
"dep:wayland-protocols-misc",
69+
"dep:wayland-client",
70+
"dep:wayland-protocols",
71+
"dep:wayland-protocols-wlr",
72+
"dep:wayland-protocols-misc",
7373
]
7474
x11 = ["dep:x11"]
7575
remote_desktop_portal = ["dep:ashpd"]

0 commit comments

Comments
 (0)