-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (80 loc) · 1.99 KB
/
Cargo.toml
File metadata and controls
84 lines (80 loc) · 1.99 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "chirpstack-gateway-mesh"
description = "ChirpStack Gateway Mesh"
repository = "https://github.com/chirpstack/chirpstack-gateway-mesh"
homepage = "https://www.chirpstack.io/"
license = "MIT"
version = "4.1.3"
authors = ["Orne Brocaar <info@brocaar.com>"]
edition = "2024"
publish = false
[dependencies]
clap = { version = "4.6", default-features = false, features = [
"std",
"help",
"usage",
"derive",
] }
chirpstack_api = { version = "4.16", default-features = false }
lrwn_filters = { version = "4.16", features = ["serde"] }
log = "0.4"
simple_logger = { version = "5.2", default-features = false, features = [
"timestamps",
] }
syslog = "7.0"
toml = { version = "1.0", default-features = false, features = [
"std",
"parse",
"serde",
] }
handlebars = "6.4"
anyhow = "1.0"
humantime-serde = "1.1"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.40", features = [
"macros",
"rt-multi-thread",
"time",
"fs",
"sync",
"process",
"io-util",
] }
hex = "0.4"
getrandom = { version = "0.4", features = ["std"] }
signal-hook = "0.4"
signal-hook-tokio = { version = "0.4", features = ["futures-v0_3"] }
futures = "0.3"
zmq = "0.10"
cmac = "0.7"
aes = "0.8"
[dev-dependencies]
zeromq = "0.5"
bytes = "1.11"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
# Debian packaging.
[package.metadata.deb]
assets = [
[
"target/release/chirpstack-gateway-mesh",
"usr/bin/",
"755",
],
[
"configuration/*.toml",
"etc/chirpstack-gateway-mesh/",
"640",
],
]
conf-files = [
"/etc/chirpstack-gateway-mesh/chirpstack-gateway-mesh.toml",
"/etc/chirpstack-gateway-mesh/region_eu868.toml",
"/etc/chirpstack-gateway-mesh/region_us915.toml",
]
maintainer-scripts = "packaging/debian/"
systemd-units = { enable = true }