Skip to content

Commit 0d2190e

Browse files
committed
chore: Release
1 parent 4b93be3 commit 0d2190e

9 files changed

Lines changed: 28 additions & 28 deletions

File tree

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.10.0"
15+
version = "0.11.0"
1616
edition = "2021"
1717
license = "GPL-3.0-or-later"
1818
repository = "https://github.com/feschber/lan-mouse"
@@ -27,13 +27,13 @@ panic = "abort"
2727
shadow-rs = "1.2.0"
2828

2929
[dependencies]
30-
input-event = { path = "input-event", version = "0.3.0" }
31-
input-emulation = { path = "input-emulation", version = "0.3.0", default-features = false }
32-
input-capture = { path = "input-capture", version = "0.3.0", default-features = false }
33-
lan-mouse-cli = { path = "lan-mouse-cli", version = "0.2.0" }
34-
lan-mouse-gtk = { path = "lan-mouse-gtk", version = "0.2.0", optional = true }
35-
lan-mouse-ipc = { path = "lan-mouse-ipc", version = "0.2.0" }
36-
lan-mouse-proto = { path = "lan-mouse-proto", version = "0.2.0" }
30+
input-event = { path = "input-event", version = "0.4.0" }
31+
input-emulation = { path = "input-emulation", version = "0.4.0", default-features = false }
32+
input-capture = { path = "input-capture", version = "0.4.0", default-features = false }
33+
lan-mouse-cli = { path = "lan-mouse-cli", version = "0.3.0" }
34+
lan-mouse-gtk = { path = "lan-mouse-gtk", version = "0.3.0", optional = true }
35+
lan-mouse-ipc = { path = "lan-mouse-ipc", version = "0.3.0" }
36+
lan-mouse-proto = { path = "lan-mouse-proto", version = "0.3.0" }
3737
shadow-rs = { version = "1.2.0", features = ["metadata"] }
3838

3939
hickory-resolver = "0.25.2"

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.3.0"
4+
version = "0.4.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.3.0" }
13+
input-event = { path = "../input-event", version = "0.4.0" }
1414
memmap = "0.7"
1515
tempfile = "3.25.0"
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.3.0"
4+
version = "0.4.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.3.0" }
13+
input-event = { path = "../input-event", version = "0.4.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.3.0"
4+
version = "0.4.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.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"
88

99
[dependencies]
1010
futures = "0.3.30"
11-
lan-mouse-ipc = { path = "../lan-mouse-ipc", version = "0.2.0" }
11+
lan-mouse-ipc = { path = "../lan-mouse-ipc", version = "0.3.0" }
1212
clap = { version = "4.4.11", features = ["derive"] }
1313
thiserror = "2.0.0"
1414
tokio = { version = "1.32.0", features = [

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.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"
@@ -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.2.0" }
15+
lan-mouse-ipc = { path = "../lan-mouse-ipc", version = "0.3.0" }
1616
thiserror = "2.0.0"
1717

1818
[build-dependencies]

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.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"

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.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"
88

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

0 commit comments

Comments
 (0)