[package] name = "mcap-rs" description = "A library for reading and writing Foxglove MCAP files" keywords = [ "foxglove", "mcap" ] categories = [ "science::robotics", "compression" ] repository = "https://github.com/anduril/mcap-rs" readme = "README.md" documentation = "https://docs.rs/mcap-rs" license = "Apache-2.0" version = "0.3.4" edition = "2021" # See the repo for the reference files # (all taken from github.com/foxglove/mcap FWIW) exclude = [ "/tests/references/" ] [profile.dev] opt-level = 3 # Profiling! # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] binrw = "0.9" byteorder = "1.4" crc32fast = "1.3" log = "0.4" lz4 = "1.0" num_cpus = "1.13" paste = "1.0" thiserror = "1.0" enumset = "1.0.11" zstd = { version = "0.11", features = ["zstdmt"] } [dev-dependencies] anyhow = "1.0" atty = "0.2" camino = "1.0" clap = { version = "3.2", features = ["derive"]} itertools = "0.10" memmap = "0.7" rayon = "1.5" simplelog = "0.12" tempfile = "3.3"