csv-slice 0.1.0

Extract rows or columns from CSV files without loading the entire file
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "csv-slice"
version = "0.1.0"
authors = ["mikaelmoise00@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Extract rows or columns from CSV files without loading the entire file"
readme = "README.md"
keywords = [
    "csv",
    "data",
    "slice",
    "extract",
]
categories = [
    "command-line-utilities",
    "parsing",
]
license = "MIT"
repository = "https://github.com/arrismo/csv-slice"

[lib]
name = "csv_slice"
path = "src/lib.rs"

[[bin]]
name = "csv-slice"
path = "src/main.rs"

[[example]]
name = "columns"
path = "examples/columns.rs"

[[example]]
name = "rows"
path = "examples/rows.rs"

[dependencies.clap]
version = "4.0"
features = ["derive"]

[dependencies.csv]
version = "1.2"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.tempfile]
version = "3"