-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 836 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
[package]
name = "dfsql"
version = "0.14.0"
edition = "2021"
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.6", optional = true }
chumsky = { version = "=1.0.0-alpha.7" }
clap = { version = "4", features = ["derive"], optional = true }
fancy-regex = { version = "0.14", optional = true }
polars = { version = "0.45", features = [
"abs",
"lazy",
"regex",
"log",
"strings",
] }
rustyline = { version = "15", features = ["derive"], optional = true }
thiserror = "2"
[features]
default = ["cli"]
cli = ["anyhow", "clap", "fancy-regex", "banyc_polars_util", "rustyline"]