-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
42 lines (35 loc) · 1.04 KB
/
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
[package]
name = "polars-cli"
version = "0.9.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/pola-rs/polars-cli"
description = "CLI interface for running SQL queries with Polars as backend"
[[bin]]
name = "polars"
path = "src/main.rs"
[dependencies]
atty = { version = "0.2" }
ciborium = { version = "0.2" }
clap = { version = "4", features = ["derive", "cargo"] }
nu-ansi-term = { version = "0.50", optional = true }
once_cell = { version = "1" }
reedline = { version = "0.38" }
serde = { version = "1", features = ["derive"] }
sqlparser = { version = "0.53" }
tmp_env = { version = "0.1" }
[dependencies.polars]
version = "0.45"
features = ["lazy", "sql", "dtype-full", "serde-lazy"]
[target.'cfg(target_os = "linux")'.dependencies]
jemallocator = { version = "0.5", features = ["disable_initial_exec_tls"] }
[features]
default = ["highlight", "parquet", "json", "ipc"]
highlight = ["nu-ansi-term"]
ipc = ["polars/ipc"]
json = ["polars/json"]
parquet = ["polars/parquet"]
[profile.release]
strip = true
lto = true
panic = "abort"