So I have found a problem with the file: 'db-dump.tar.gz' - generated by crates.io
The resulting .csv file cannot be read by for example Python's CsvReader
I believe this is a corner case or "test case-escape" with tools that generate the db-dump.tar.gz
Where should I report such an issue?
you can report to the crates-io repository:
The Rust package registry
e.g. by opening an issue or discussion.
btw, what's the error when using python's CsvReader? can you verify the dumps can be parsed successfully using this crate? check the load-all example if you are not familiar with it.
//! $ cargo run --release --example load-all
//!
//! Load everything. Almost never useful other than for benchmarking.
use std::time::Instant;
fn main() -> db_dump::Result<()> {
let start = Instant::now();
let db = db_dump::load_all("./db-dump.tar.gz")?;
let elapsed = start.elapsed();
println!("{}.{:03}sec", elapsed.as_secs(), elapsed.subsec_millis());
drop(db);
Ok(())
}
system
Closed
October 27, 2025, 12:14am
3
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.