dr/Cargo.toml

22 lines
686 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"
2023-02-11 18:55:29 +01:00
version = "0.7.0"
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"]}
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"}