[package]
edition = "2024"
name = "fitparser"
version = "0.11.0"
authors = ["Matthew Stadelman <stadelmanma@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A utility to parse ANT .FIT files and allow their contents to be serialized with serde."
documentation = "https://docs.rs/fitparser"
readme = "README.md"
keywords = [
"ant",
"fit",
"garmin",
"serde",
]
categories = [
"encoding",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/stadelmanma/fitparse-rs"
resolver = "2"
[lib]
name = "fitparser"
path = "src/lib.rs"
[[example]]
name = "fit_to_json"
path = "examples/fit_to_json.rs"
[[example]]
name = "streaming"
path = "examples/streaming.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.nom]
version = "8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.structopt]
version = "0.3"