-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 832 Bytes
/
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
[package]
name = "defmt-influx"
version = "0.1.1"
edition = "2018"
authors = ["Mia Metzler <[email protected]>"]
repository = "https://github.com/miathedev/defmt-influx"
readme = "README.md"
description = "Pipes defmt logs received from a TCP interface to InfluxDB"
keywords = ["cli", "embedded", "defmt"]
categories = ["command-line-utilities", "development-tools", "embedded"]
license-file = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3.26"
thiserror = "1.0"
ctrlc = "3.1.7"
log = "0.4.14"
anyhow = "1.0.43"
influxdb2 = "0.3"
influxdb2-structmap = "0.2"
num-traits = "0.2"
futures = "0.3"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[dependencies.defmt-decoder]
version = "=0.3.0"
features = ["unstable"]