rsql_repl 0.20.0

rsql library for creating a REPL command line SQL interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate colored;

mod args;
mod completer;
mod error;
mod helper;
mod highlighter;
mod repl;

pub use args::ShellArgs;
pub use error::{Error, Result};
pub use repl::{Shell, ShellBuilder};