-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 932 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 932 Bytes
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
[package]
name = "dfsql"
version = "0.15.1"
edition = "2024"
description = "SQL REPL for Data Frames"
license = "MIT"
repository = "https://github.com/Banyc/dfsql"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1", optional = true }
banyc_polars_util = { version = "0.7", optional = true }
chumsky = { version = "=1.0.0-alpha.8" }
clap = { version = "4", features = ["derive"], optional = true }
fancy-regex = { version = "0.14", optional = true }
polars = { version = "0.47", features = [
"abs",
"lazy",
"regex",
"log",
"strings",
"dtype-categorical",
# https://github.com/pola-rs/polars/issues/22733
"dtype-i128",
] }
rustyline = { version = "15", features = ["derive"], optional = true }
thiserror = "2"
[features]
default = ["cli"]
cli = ["anyhow", "clap", "fancy-regex", "banyc_polars_util", "rustyline"]