-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Cargo.toml
56 lines (54 loc) · 1.46 KB
/
Cargo.toml
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
[package]
name = "chirpstack-packet-multiplexer"
description = "ChirpStack Packet Multiplexer"
repository = "https://github.com/chirpstack/chirpstack-package-multiplexer/"
homepage = "https://github.com/chirpstack/chirpstack-package-multiplexer/"
license = "MIT"
version = "4.0.0-test.2"
authors = ["Orne Brocaar <[email protected]>"]
edition = "2021"
publish = false
[dependencies]
clap = { version = "4.5", default-features = false, features = [
"std",
"help",
"usage",
"derive",
] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
prometheus-client = "0.22"
tokio = { version = "1.41", features = [
"macros",
"rt-multi-thread",
"net",
"sync",
"time",
] }
anyhow = "1.0"
lrwn_filters = { version = "4.10.0-test.1", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "ansi"] }
signal-hook = "0.3"
hex = "0.4"
axum = "0.7"
handlebars = "6.1"
# Debian packaging.
[package.metadata.deb]
assets = [
[
"target/release/chirpstack-packet-multiplexer",
"usr/bin/",
"755",
],
[
"packaging/debian/chirpstack-packet-multiplexer.toml",
"etc/chirpstack-packet-multiplexer/",
"640",
],
]
conf-files = [
"/etc/chirpstack-packet-multiplexer/chirpstack-packet-multiplexer.toml",
]
maintainer-scripts = "packaging/debian/"
systemd-units = { enable = true }