-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (61 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
64 lines (61 loc) · 1.72 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
[package]
name = "chirpstack-udp-forwarder"
description = "ChirpStack UDP Forwarder for Concentratord, compatible with the Semtech UDP protocol"
repository = "https://github.com/chirpstack/chirpstack-udp-forwarder/"
license = "MIT"
version = "4.3.0"
authors = ["Orne Brocaar <info@brocaar.com>"]
edition = "2024"
publish = false
[dependencies]
lrwn_filters = { version = "4.16", features = ["serde"] }
chirpstack_api = { version = "4.16", default-features = false }
serde_json = "1.0"
zmq = "0.10"
clap = { version = "4.5", default-features = false, features = [
"std",
"help",
"usage",
"derive",
] }
hex = "0.4"
toml = { version = "0.9", default-features = false, features = [
"std",
"parse",
"serde",
] }
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
simple_logger = { version = "5.1", default-features = false, features = [
"timestamps",
] }
uuid = { version = "1.19", features = ["v4"] }
syslog = "7.0"
getrandom = { version = "0.3", features = ["std"] }
chrono = { version = "0.4", default-features = false, features = ["now"] }
base64 = "0.22"
prometheus-client = "0.24"
anyhow = "1.0"
thiserror = "2.0"
[package.metadata.deb]
assets = [
[
"target/release/chirpstack-udp-forwarder",
"usr/bin/",
"755",
],
[
"packaging/debian/chirpstack-udp-forwarder.toml",
"etc/chirpstack-udp-forwarder/",
"640",
],
]
conf-files = ["/etc/chirpstack-udp-forwarder/chirpstack-udp-forwarder.toml"]
maintainer-scripts = "packaging/debian/"
systemd-units = { enable = true }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"