Update README and description

This commit is contained in:
Andy Grove 2018-09-08 08:42:07 -06:00
parent 06a8870bd7
commit e16b92763a
2 changed files with 3 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "sqlparser"
description = "ANSI SQL:2011 Lexer and Parser"
description = "Extensible SQL Lexer and Parser with support for ANSI SQL:2011"
version = "0.1.5-alpha.0"
authors = ["Andy Grove <andygrove73@gmail.com>"]
homepage = "https://github.com/andygrove/sqlparser-rs"

View file

@ -1,4 +1,4 @@
# ANSI SQL Lexer and Parser for Rust
# Extensible SQL Lexer and Parser for Rust
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Version](https://img.shields.io/crates/v/sqlparser.svg)](https://crates.io/crates/sqlparser)
@ -6,9 +6,7 @@
[![Coverage Status](https://coveralls.io/repos/github/andygrove/sqlparser-rs/badge.svg?branch=master)](https://coveralls.io/github/andygrove/sqlparser-rs?branch=master)
[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/datafusion-rs)
The primary goal of this project is to build a SQL lexer and parser capable of parsing SQL that conforms with the [ANSI SQL:2011](https://jakewheat.github.io/sql-overview/sql-2011-foundation-grammar.html#_5_1_sql_terminal_character) standard.
A secondary goal is to make it easy for others to use this library as a foundation for building custom SQL parsers for vendor-specific dialects.
The goal of this project is to build a SQL lexer and parser capable of parsing SQL that conforms with the [ANSI SQL:2011](https://jakewheat.github.io/sql-overview/sql-2011-foundation-grammar.html#_5_1_sql_terminal_character) standard but also making it easy to support custom dialects so that this crate can be used as a foundation for vendor-specific parsers.
This parser is currently being used by the [DataFusion](https://github.com/datafusion-rs/datafusion) query engine.