dr/Cargo.toml

21 lines
653 B
TOML
Raw Normal View History

[package]
2022-11-20 01:34:04 +01:00
name = "dr"
2022-11-20 13:00:03 +01:00
description = "Command-line data file processing in Rust"
2022-12-26 13:54:17 +01:00
version = "0.5.3"
edition = "2021"
2022-11-20 13:00:03 +01:00
include = [
"**/*.rs",
"Cargo.toml",
]
license-file = "LICENSE"
repository = "https://git.guillemborrell.es/guillem/dr"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = {version = "4.0", features = ["cargo"]}
2022-12-26 00:07:50 +01:00
polars-lazy = {"version" = "0.26", "features" = ["parquet", "ipc", "csv-file"]}
2022-12-26 13:54:17 +01:00
polars-core = {"version" = "0.26", "features" = ["describe", "fmt"]}
2022-12-26 00:07:50 +01:00
polars-io = {"version" = "0.26", "features" = ["ipc_streaming"]}
polars-sql = {"version" = "0.2.2"}