-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 847 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 847 Bytes
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
[package]
name = "irig106-time"
version = "0.7.0"
edition = "2021"
rust-version = "1.60"
description = "Precision time interpretation and format conversion for IRIG 106 telemetry data."
repository = "https://github.com/TelemetryWorks/irig106-time"
license = "Apache-2.0"
categories = ["aerospace", "parser-implementations", "no-std"]
keywords = ["irig106", "telemetry", "time", "chapter10", "flight-test"]
[features]
default = ["std"]
std = []
serde = ["dep:serde"]
chrono = ["dep:chrono"]
[dependencies]
serde = { version = "1", features = ["derive"], optional = true }
chrono = { version = "0.4", default-features = false, optional = true }
[dev-dependencies]
proptest = "1"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "time_benchmarks"
harness = false
[[bench]]
name = "correlation_bench"
harness = false