[package] name = "fit" version = "0.5.0" license = "MIT" authors = ["Richard Brodie "] edition = "2018" description = "A small crate used for reading and decoding FIT files generated by sports devices." documentation = "https://docs.rs/fit" repository = "https://github.com/richardbrodie/fit-rs" [dependencies] memmap = "^0.7.0" copyless = "^0.1.4" fitsdk = "^0.1.0" [dev-dependencies] criterion = "^0.3.0" [profile.release] panic = 'abort' [[bin]] name = "test_std" path = "bin/test_std.rs" [[bin]] name = "test_all" path = "bin/test_all.rs" [[bin]] name = "test_dev_fields" path = "bin/test_dev_fields.rs" [[bench]] name = "bench_read_file" harness = false #[[example]] #name = "iterate_records" #path = "examples/iterate_records.rs"