[package] name = "egui-dataframe-sample" version = "0.3.10" # change with html_root_url in main.rs edition = "2021" authors = ["nomissbowling "] description = "Rust egui Widgets for polars dataframe" keywords = ["egui", "dataframe", "polars", "plotters", "gui"] categories = ["gui", "visualization", "development-tools", "games", "graphics"] license = "MIT" documentation = "https://docs.rs/egui-dataframe-sample/" homepage = "https://crates.io/crates/egui-dataframe-sample" repository = "https://github.com/nomissbowling/egui-dataframe-sample" readme = "README.md" #build = "build.rs" [dependencies] sqlite = { version = "=0.36.0" } polars-sqlite = { version = "=0.3.9" } anyvalue-dataframe = { version = "=0.1.2" } egui-dataframe = { version = "=0.3.3" } egui-resources = { version = "=0.4.0" } half = { version = "=2.2.1" } # (for image) 2.4.1 image = { version = "=0.24.6", features = ["png", "jpeg"] } # 0.25.1 egui = { version = "=0.21.0" } # 0.27.2 eframe = { version = "=0.21.0", features = ["persistence"] } # 0.27.2 # ecolor = { version = "=0.21.0" } # 0.27.2 (for TableBuilder) # egui_extras = { version = "=0.21.0" } # 0.27.2 (for TableBuilder) polars-utils = { version = "=0.25.1" } polars = { version = "=0.25.1", features = ["describe", "lazy", "object", "strings", "dtype-full", "dtype-categorical", "list_eval", "rows", "round_series", "rank"] } itertools = { version = "=0.13.0" } iter-tuple = { version = "=0.3.8" }