12 releases

Uses new Rust 2024

new 0.19.3 Feb 16, 2026
0.19.2 Sep 1, 2025
0.19.1 Jul 10, 2025
0.18.1 Mar 27, 2025

#183 in #mysql

Download history 69/week @ 2025-10-21 31/week @ 2025-10-28 29/week @ 2025-11-04 43/week @ 2025-11-11 26/week @ 2025-11-18 25/week @ 2025-11-25 26/week @ 2025-12-02 22/week @ 2025-12-09 36/week @ 2025-12-16 31/week @ 2025-12-23 30/week @ 2025-12-30 10/week @ 2026-01-06 15/week @ 2026-01-13 28/week @ 2026-01-20 36/week @ 2026-01-27 27/week @ 2026-02-03

106 downloads per month
Used in 14 crates (3 directly)

Apache-2.0 OR MIT

185KB
3.5K SLoC

rsql_driver_delimited

Documentation Code Coverage Latest version License Semantic Versioning

rsql_driver_delimited is a data driver for character delimited files.

Usage

Driver url format: delimited://<file>[?separator=<char>][&has_header=<true|false>][&quote=<char>][&skip_rows=<n>]

The driver is implemented using Polars SQL.

Driver Configuration

Parameter Description Default
has_header Whether the file has a header row. true
separator The character used to separate fields in the file. ,
quote The character used to quote fields in the file. "
eol The character used to separate lines in the file. \n
skip_rows The number of rows to skip before reading the data. 0
skip_rows_after_header The number of rows to skip after the header. 0
truncate_ragged_lines Whether to truncate lines that are longer than the schema. false
infer_schema_length The number of rows to use when inferring the schema. 100
ignore_errors Whether to ignore errors. If true, errors will be ignored. If false, errors will cause the query to fail. false

Safety

These crates use #![forbid(unsafe_code)] to ensure everything is implemented in 100% safe Rust.

License

Licensed under either of:

Dependencies

~112MB
~2.5M SLoC