Files
ingey/Cargo.toml
piv 7949a0a07b Start adding messagepack serialization by adding custom serialize trait to handle csv and messagepack serialization
This is required as csv writer doesn't expose the serde::Serializer implementation, so we can't just use that trait in place of the output writer
2023-03-15 21:48:49 +10:30

31 lines
836 B
TOML

[package]
name = "coster-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# https://nalgebra.org/docs/user_guide/getting_started
nalgebra = "0.31.0"
# https://docs.rs/csv/1.1.6/csv/
csv = "1.1"
serde = { version = "1", features = ["derive"] }
# num = "0.4"
clap = { version = "4.1.8", features = ["derive"] }
anyhow = "1.0"
itertools = "0.10.3"
chrono = {version = "0.4.23", features = ["default", "serde"]}
rayon = "1.6.0"
tokio = { version = "1.26.0", features = ["full"] }
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "mssql" ] }
rmp-serde = "1.1.1"
# More info on targets: https://doc.rust-lang.org/cargo/reference/cargo-targets.html#configuring-a-target
[lib]
crate-type = ["cdylib", "staticlib", "lib"]