-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 882 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
30
[package]
name = "ulog-rs"
version = "0.0.4"
edition = "2021"
authors = ["Brian Stearns <[email protected]>"]
description = "A parser for the PX4 ULog file format"
repository = "https://github.com/BWStearns/ulog-rs"
readme = "README.md"
license = "MIT"
keywords = ["ulog", "px4", "parser", "logging"]
categories = ["aerospace::drones", "aerospace::unmanned-aerial-vehicles"]
[dependencies]
byteorder = "1.4" # For reading binary data in little-endian format
thiserror = "1.0" # For error handling
bytes = "1.4" # For working with bytes
log = "0.4"
serde_json = "1.0.133"
serde = "1.0.216"
serde_derive = "1.0.216"
clap = { version = "4.5.23", features = ["derive"] }
[dependencies.dirs]
version = "5.0" # For finding home directory
[dev-dependencies]
tempfile = "3.5" # For tests that need temporary files
[[bin]]
name = "profiler"