[package]
edition = "2024"
rust-version = "1.93"
name = "rustyfit"
version = "0.7.0"
authors = ["Hikmatulloh Hari Mukti <muktihaz@gmail.com>"]
build = false
include = [
"Cargo.toml",
"Cargo.lock",
"src/**/*",
"LICENSE*",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
The #![no_std] Rust implementation of The Flexible and Interoperable Data Transfer (FIT)
Protocol for decoding and encoding Garmin FIT files, supporting FIT Protocol V2.
"""
readme = "README.md"
keywords = [
"no_std",
"encoding",
"fit",
"garmin",
]
categories = [
"encoding",
"parsing",
"parser-implementations",
"embedded",
"no-std",
]
license = "BSD-3-Clause"
repository = "https://github.com/muktihari/rustyfit"
[lib]
name = "rustyfit"
path = "src/lib.rs"
[dependencies.embedded-io]
version = "0.7.1"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.embedded-io-adapters]
version = "0.7.0"
features = ["std"]