Skip to content

Commit 98ad580

Browse files
committed
Update dependencies and workspace config.
1 parent 03adeac commit 98ad580

File tree

11 files changed

+294
-244
lines changed

11 files changed

+294
-244
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
resolver = "2"
2+
resolver = "3"
33
members = [
44
"chirpstack-concentratord-2g4",
55
"chirpstack-concentratord-sx1301",
@@ -11,3 +11,21 @@
1111
"libloragw-2g4",
1212
"libconcentratord",
1313
]
14+
15+
[workspace.dependencies]
16+
chirpstack_api = { version = "4.14", default-features = false }
17+
serde = { version = "1.0", features = ["derive"] }
18+
toml = "0.9"
19+
clap = { version = "4.5", features = ["derive"] }
20+
log = "0.4"
21+
simple_logger = "5.0"
22+
zmq = "0.10"
23+
hex = "0.4"
24+
chrono = "0.4"
25+
humantime-serde = "1.1"
26+
syslog = "7.0"
27+
signal-hook = "0.3"
28+
handlebars = "6.3"
29+
rand = "0.9"
30+
anyhow = "1.0"
31+
bindgen = "0.72"

chirpstack-concentratord-2g4/Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
[dependencies]
1212
libloragw-2g4 = { path = "../libloragw-2g4" }
1313
libconcentratord = { path = "../libconcentratord" }
14-
chirpstack_api = { version = "4.13", default-features = false }
15-
serde = { version = "1.0", features = ["derive"] }
16-
toml = "0.9"
17-
clap = { version = "4.5", features = ["derive"] }
18-
log = "0.4"
19-
simple_logger = "5.0"
20-
zmq = "0.10"
21-
hex = "0.4"
22-
chrono = "0.4"
23-
humantime-serde = "1.1"
24-
syslog = "7.0"
25-
signal-hook = "0.3"
26-
handlebars = "6.3"
27-
rand = "0.9"
28-
anyhow = "1.0"
14+
chirpstack_api = { workspace = true }
15+
serde = { workspace = true }
16+
toml = { workspace = true }
17+
clap = { workspace = true }
18+
log = { workspace = true }
19+
simple_logger = { workspace = true }
20+
zmq = { workspace = true }
21+
hex = { workspace = true }
22+
chrono = { workspace = true }
23+
humantime-serde = { workspace = true }
24+
syslog = { workspace = true }
25+
signal-hook = { workspace = true }
26+
handlebars = { workspace = true }
27+
rand = { workspace = true }
28+
anyhow = { workspace = true }

chirpstack-concentratord-sx1301/Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
[dependencies]
1212
libloragw-sx1301 = { path = "../libloragw-sx1301" }
1313
libconcentratord = { path = "../libconcentratord" }
14-
chirpstack_api = { version = "4.13", default-features = false }
15-
serde = { version = "1.0", features = ["derive"] }
16-
toml = "0.9"
17-
clap = { version = "4.5", features = ["derive"] }
18-
log = "0.4"
19-
simple_logger = "5.0"
20-
zmq = "0.10"
21-
hex = "0.4"
22-
chrono = "0.4"
23-
humantime-serde = "1.1"
24-
syslog = "7.0"
25-
signal-hook = "0.3"
26-
handlebars = "6.3"
27-
rand = "0.9"
28-
anyhow = "1.0"
14+
chirpstack_api = { workspace = true }
15+
serde = { workspace = true }
16+
toml = { workspace = true }
17+
clap = { workspace = true }
18+
log = { workspace = true }
19+
simple_logger = { workspace = true }
20+
zmq = { workspace = true }
21+
hex = { workspace = true }
22+
chrono = { workspace = true }
23+
humantime-serde = { workspace = true }
24+
syslog = { workspace = true }
25+
signal-hook = { workspace = true }
26+
handlebars = { workspace = true }
27+
rand = { workspace = true }
28+
anyhow = { workspace = true }

chirpstack-concentratord-sx1302/Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
[dependencies]
1212
libloragw-sx1302 = { path = "../libloragw-sx1302" }
1313
libconcentratord = { path = "../libconcentratord" }
14-
chirpstack_api = { version = "4.13", default-features = false }
15-
serde = { version = "1.0", features = ["derive"] }
16-
toml = "0.9"
17-
clap = { version = "4.5", features = ["derive"] }
18-
log = "0.4"
19-
simple_logger = "5.0"
20-
zmq = "0.10"
21-
hex = "0.4"
22-
chrono = "0.4"
23-
humantime-serde = "1.1"
24-
syslog = "7.0"
25-
signal-hook = "0.3"
26-
handlebars = "6.3"
27-
rand = "0.9"
28-
anyhow = "1.0"
14+
chirpstack_api = { workspace = true }
15+
serde = { workspace = true }
16+
toml = { workspace = true }
17+
clap = { workspace = true }
18+
log = { workspace = true }
19+
simple_logger = { workspace = true }
20+
zmq = { workspace = true }
21+
hex = { workspace = true }
22+
chrono = { workspace = true }
23+
humantime-serde = { workspace = true }
24+
syslog = { workspace = true }
25+
signal-hook = { workspace = true }
26+
handlebars = { workspace = true }
27+
rand = { workspace = true }
28+
anyhow = { workspace = true }

gateway-id/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
publish = false
1010

1111
[dependencies]
12-
zmq = "0.10"
13-
clap = { version = "4.5", features = ["derive"] }
14-
chirpstack_api = { version = "4.13", default-features = false }
12+
zmq = { workspace = true }
13+
clap = { workspace = true }
14+
chirpstack_api = { workspace = true }

gateway-location/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
publish = false
1010

1111
[dependencies]
12-
zmq = "0.10"
13-
clap = { version = "4.5", features = ["derive"] }
14-
chirpstack_api = { version = "4.13", default-features = false }
12+
zmq = { workspace = true }
13+
clap = { workspace = true }
14+
chirpstack_api = { workspace = true }

libloragw-2g4/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
name = "libloragw-2g4"
33
version = "1.0.0"
44
authors = ["Orne Brocaar <[email protected]>"]
5-
edition = "2021"
5+
edition = "2024"
66
publish = false
77

88
[dependencies]
9-
anyhow = "1.0"
9+
anyhow = { workspace = true }
1010

1111
[build-dependencies]
12-
bindgen = "0.72"
12+
bindgen = { workspace = true }

libloragw-sx1301/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
publish = false
77

88
[dependencies]
9-
anyhow = "1.0"
9+
anyhow = { workspace = true }
1010

1111
[build-dependencies]
12-
bindgen = "0.72"
12+
bindgen = { workspace = true }

libloragw-sx1302/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
publish = false
77

88
[dependencies]
9-
anyhow = "1.0"
9+
anyhow = { workspace = true }
1010

1111
[build-dependencies]
12-
bindgen = "0.72"
12+
bindgen = { workspace = true }

0 commit comments

Comments
 (0)