-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
48 lines (43 loc) · 941 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
authors = ["Vince Vasta <[email protected]>"]
description = "A command line data manipulation tool inspired by the dplyr grammar."
repository = "https://github.com/vincev/dply-rs"
edition = "2021"
license = "Apache-2.0"
name = "dply"
version = "0.3.3"
rust-version = "1.70.0"
[dependencies]
anyhow = "1.0"
clap = { version = "4.2", features = ["derive"] }
comfy-table = "7"
home = "0.5"
lru = "0.12.0"
nom = "7"
reedline = "0.32"
regex = "1.9.4"
thiserror = "1.0"
[target.'cfg(target_family = "unix")'.dependencies]
jemallocator = { version = "0.5", features = ["disable_initial_exec_tls"] }
[dependencies.polars]
version = "0.41.0"
default-features = false
features = [
"cross_join",
"csv",
"dtype-full",
"fmt",
"is_in",
"json",
"lazy",
"parquet",
"performant",
"semi_anti_join",
"strings",
"timezones"
]
[dev-dependencies]
indoc = "2"
[profile.dev]
opt-level = 0
debug = 2