2022-11-19 16:36:24 +01:00
|
|
|
[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"
|
2023-02-11 18:55:29 +01:00
|
|
|
version = "0.7.0"
|
2022-11-19 16:36:24 +01:00
|
|
|
edition = "2021"
|
2022-11-20 13:00:03 +01:00
|
|
|
include = [
|
|
|
|
"**/*.rs",
|
|
|
|
"Cargo.toml",
|
|
|
|
]
|
|
|
|
license-file = "LICENSE"
|
|
|
|
repository = "https://git.guillemborrell.es/guillem/dr"
|
2022-11-19 16:36:24 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = {version = "4.0", features = ["cargo"]}
|
2023-02-11 18:55:29 +01:00
|
|
|
polars-lazy = {"version" = "0.27", "features" = ["parquet", "ipc", "csv-file"]}
|
|
|
|
polars-core = {"version" = "0.27", "features" = ["describe", "fmt"]}
|
|
|
|
polars-io = {"version" = "0.27", "features" = ["ipc_streaming"]}
|
|
|
|
polars-sql = {"version" = "0.2.3"}
|
2023-01-17 12:28:49 +01:00
|
|
|
sea-query = {"version" = "0.28"}
|