Skip to content

Commit 4703a4c

Browse files
committed
chore: Release
1 parent a870a9e commit 4703a4c

File tree

9 files changed

+28
-28
lines changed

9 files changed

+28
-28
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
[package]
1313
name = "lan-mouse"
1414
description = "Software KVM Switch / mouse & keyboard sharing software for Local Area Networks"
15-
version = "0.9.1"
15+
version = "0.10.0"
1616
edition = "2021"
1717
license = "GPL-3.0-or-later"
1818
repository = "https://github.com/feschber/lan-mouse"
@@ -22,13 +22,13 @@ strip = true
2222
lto = "fat"
2323

2424
[dependencies]
25-
input-event = { path = "input-event", version = "0.2.1" }
26-
input-emulation = { path = "input-emulation", version = "0.2.1", default-features = false }
27-
input-capture = { path = "input-capture", version = "0.2.0", default-features = false }
28-
lan-mouse-cli = { path = "lan-mouse-cli", version = "0.1.0" }
29-
lan-mouse-gtk = { path = "lan-mouse-gtk", version = "0.1.0", optional = true }
30-
lan-mouse-ipc = { path = "lan-mouse-ipc", version = "0.1.0" }
31-
lan-mouse-proto = { path = "lan-mouse-proto", version = "0.1.0" }
25+
input-event = { path = "input-event", version = "0.3.0" }
26+
input-emulation = { path = "input-emulation", version = "0.3.0", default-features = false }
27+
input-capture = { path = "input-capture", version = "0.3.0", default-features = false }
28+
lan-mouse-cli = { path = "lan-mouse-cli", version = "0.2.0" }
29+
lan-mouse-gtk = { path = "lan-mouse-gtk", version = "0.2.0", optional = true }
30+
lan-mouse-ipc = { path = "lan-mouse-ipc", version = "0.2.0" }
31+
lan-mouse-proto = { path = "lan-mouse-proto", version = "0.2.0" }
3232

3333
hickory-resolver = "0.24.1"
3434
toml = "0.8"

input-capture/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "input-capture"
33
description = "cross-platform input-capture library used by lan-mouse"
4-
version = "0.2.0"
4+
version = "0.3.0"
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/feschber/lan-mouse"
@@ -10,7 +10,7 @@ repository = "https://github.com/feschber/lan-mouse"
1010
futures = "0.3.28"
1111
futures-core = "0.3.30"
1212
log = "0.4.22"
13-
input-event = { path = "../input-event", version = "0.2.1" }
13+
input-event = { path = "../input-event", version = "0.3.0" }
1414
memmap = "0.7"
1515
tempfile = "3.8"
1616
thiserror = "2.0.0"

input-emulation/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "input-emulation"
33
description = "cross-platform input emulation library used by lan-mouse"
4-
version = "0.2.1"
4+
version = "0.3.0"
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/feschber/lan-mouse"
@@ -10,7 +10,7 @@ repository = "https://github.com/feschber/lan-mouse"
1010
async-trait = "0.1.80"
1111
futures = "0.3.28"
1212
log = "0.4.22"
13-
input-event = { path = "../input-event", version = "0.2.1" }
13+
input-event = { path = "../input-event", version = "0.3.0" }
1414
thiserror = "2.0.0"
1515
tokio = { version = "1.32.0", features = [
1616
"io-util",

input-event/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "input-event"
33
description = "cross-platform input-event types for input-capture / input-emulation"
4-
version = "0.2.1"
4+
version = "0.3.0"
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/feschber/lan-mouse"

lan-mouse-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "lan-mouse-cli"
33
description = "CLI Frontend for lan-mouse"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/feschber/lan-mouse"
88

99
[dependencies]
1010
futures = "0.3.30"
11-
lan-mouse-ipc = { path = "../lan-mouse-ipc", version = "0.1.0" }
11+
lan-mouse-ipc = { path = "../lan-mouse-ipc", version = "0.2.0" }
1212
tokio = { version = "1.32.0", features = [
1313
"io-util",
1414
"io-std",

lan-mouse-gtk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lan-mouse-gtk"
33
description = "GTK4 / Libadwaita Frontend for lan-mouse"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/feschber/lan-mouse"
@@ -12,7 +12,7 @@ adw = { package = "libadwaita", version = "0.7.0", features = ["v1_1"] }
1212
async-channel = { version = "2.1.1" }
1313
hostname = "0.4.0"
1414
log = "0.4.20"
15-
lan-mouse-ipc = { path = "../lan-mouse-ipc", version = "0.1.0" }
15+
lan-mouse-ipc = { path = "../lan-mouse-ipc", version = "0.2.0" }
1616

1717
[build-dependencies]
1818
glib-build-tools = { version = "0.20.0" }

lan-mouse-ipc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lan-mouse-ipc"
33
description = "library for communication between lan-mouse service and frontends"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/feschber/lan-mouse"

lan-mouse-proto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "lan-mouse-proto"
33
description = "network protocol for lan-mouse"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/feschber/lan-mouse"
88

99
[dependencies]
1010
num_enum = "0.7.2"
1111
thiserror = "2.0.0"
12-
input-event = { path = "../input-event", version = "0.2.1" }
12+
input-event = { path = "../input-event", version = "0.3.0" }
1313
paste = "1.0"

0 commit comments

Comments
 (0)