3 releases (breaking)
0.3.0 | Mar 3, 2024 |
---|---|
0.2.0 | Sep 11, 2023 |
0.1.0 | Sep 6, 2023 |
#2583 in Database interfaces
625KB
615 lines
Installation
cargo add baskerville
Example
# mascots.csv
Name,LOC,Species
Ferris,42,Crab
Corro,7,Urchin
use baskerville::{infer_csv_with_options, CsvInput, InferOptions};
fn main() {
let fields = infer_csv_with_options(
CsvInput::Path("mascots.csv"),
&mut InferOptions {
has_headers: true,
..InferOptions::default()
},
)
.unwrap();
println!("{fields}");
}
Output:
╭──────┬─────────┬─────────╮
│ Name │ LOC │ Species │
├──────┼─────────┼─────────┤
│ Text │ Integer │ Text │
│ │ Float │ │
│ │ Text │ │
╰──────┴─────────┴─────────╯
Contributing
Versioning
The repo bases versioning from Conventional Commits
Dependencies
~3.5–10MB
~92K SLoC