forked from hdoordt/ppk2-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (24 loc) · 808 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
[package]
name = "ppk2"
version = "0.1.2"
edition = "2021"
authors = ["Henk Oordt <[email protected]>"]
description = "A driver for Nordic's Power Profiler Kit 2"
readme = "README.md"
repository = "https://github.com/hdoordt/ppk2-rs"
license = "MIT"
keywords = ["PPK2", "Power", "Profiler", "Nordic", "Serial"]
categories = ["embedded", "development-tools::profiling"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num_enum = "0.5.7"
serialport = "4.2.0"
thiserror = "1.0.32"
tracing = "0.1.36"
[dev-dependencies]
anyhow = { version = "1.0.60", features = ["backtrace"] }
ctrlc_fnonce = "0.1.0"
tracing-subscriber = "0.3.15"
clap = { version = "3.2.20", features = ["derive", "env"] }
[badges]
maintenance = { status = "passively-maintained" }