-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 1.02 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
[package]
name = "bbl_parser"
version = "1.0.0"
edition = "2021"
authors = ["nerdCopter"]
license = "AGPL-3.0-or-later"
description = "Parser for Betaflight/EmuFlight/INAV blackbox log files"
keywords = ["betaflight", "blackbox", "drone", "flight-log", "parser"]
categories = ["parsing", "aerospace"]
rust-version = "1.70.0"
[build-dependencies]
anyhow = "1.0"
vergen = { version = "8", features = ["git", "gitcl"] }
[dependencies]
anyhow = "1.0"
clap = { version = "4.0", features = ["derive"], optional = true }
glob = { version = "0.3", optional = true }
regex = { version = "1.11.1", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
csv = { version = "1.2", optional = true }
semver = "1.0"
[features]
default = ["csv", "cli"]
csv = ["dep:csv"]
json = ["dep:serde", "dep:serde_json"]
serde = ["dep:serde"]
cli = ["dep:clap", "dep:glob", "dep:regex"]
[dev-dependencies]
tempfile = "3.0"
[[example]]
name = "bbl_crate_test"
required-features = ["cli"]