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"
|
2022-12-06 16:08:54 +01:00
|
|
|
version = "0.4.1"
|
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"]}
|
2022-12-06 15:16:39 +01:00
|
|
|
polars = {"version" = "0.25", features = ["sql", "lazy", "parquet", "decompress", "ipc", "ipc_streaming", "docs-selection"]}
|