dply 0.3.5

A command line data manipulation tool inspired by the dplyr grammar.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2023 Vince Vasta
// SPDX-License-Identifier: Apache-2.0

//! Data manipulation tool inspired by the [dplyr](https://dplyr.tidyverse.org/) grammar.
#![warn(clippy::all, rust_2018_idioms, missing_docs)]

pub mod interpreter;
pub mod repl;

mod completions;
mod config;
mod engine;
mod fuzzy;
mod parser;
mod signatures;
mod typing;