dfsql 0.6.1

SQL REPL for Data Frames
Documentation
[package]
name = "dfsql"
version = "0.6.1"
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 }
chumsky = { version = "=1.0.0-alpha.6" }
clap = { version = "4", features = ["derive"], optional = true }
fancy-regex = { version = "0.13", optional = true }
polars = { version = "0.36", features = [
    "abs",
    "lazy",
    "lazy_regex",
    "log",
    "strings",
] }
rustyline = { version = "13", features = ["derive"], optional = true }
thiserror = "1"

[features]
default = ["cli"]
cli = ["anyhow", "clap", "fancy-regex", "polars/json", "rustyline"]