-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (38 loc) · 1 KB
/
Cargo.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
[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"