Skip to content

Commit 0c23392

Browse files
committed
replace with code from datafusion
1 parent a86bd30 commit 0c23392

14 files changed

+1762
-595
lines changed

Cargo.toml

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
[package]
2-
name = "datafusion-sql"
2+
name = "sqlparser"
3+
description = "ANSI SQL parser"
34
version = "0.1.0"
45
authors = ["Andy Grove <[email protected]>"]
6+
homepage = "https://github.com/andygrove/sqlparser-rs"
7+
documentation = "https://github.com/andygrove/sqlparser-rs"
8+
keywords = [ "sql", "lexer", "parser" ]
9+
repository = "https://github.com/andygrove/sqlparser-rs"
10+
license = "Apache-2.0"
11+
include = [
12+
"src/**/*.rs",
13+
"Cargo.toml",
14+
]
15+
16+
[lib]
17+
name = "sqlparser"
18+
path = "src/lib.rs"
519

620
[dependencies]
21+
fnv = "1.0.3"
22+
lazy_static = "1.0"

LICENSE

-201
This file was deleted.

0 commit comments

Comments
 (0)