Skip to content

Commit

Permalink
feat: support range query
Browse files Browse the repository at this point in the history
  • Loading branch information
Taylor-lagrange committed Mar 7, 2024
1 parent 5da66ad commit c919990
Show file tree
Hide file tree
Showing 18 changed files with 1,317 additions and 231 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,6 @@ jobs:
- uses: actions/checkout@master
- run: cargo doc --document-private-items --no-deps --workspace --all-features

compile-no-std:
runs-on: ubuntu-latest
steps:
- name: Set up Rust
uses: hecrj/setup-rust-action@v1
with:
targets: 'thumbv6m-none-eabi'
- uses: actions/checkout@master
- run: cargo check --no-default-features --target thumbv6m-none-eabi

test:
strategy:
matrix:
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ documentation = "https://docs.rs/sqlparser/"
keywords = ["ansi", "sql", "lexer", "parser"]
repository = "https://github.com/sqlparser-rs/sqlparser-rs"
license = "Apache-2.0"
include = [
"src/**/*.rs",
"Cargo.toml",
"LICENSE.TXT",
]
include = ["src/**/*.rs", "Cargo.toml", "LICENSE.TXT"]
edition = "2021"

[lib]
Expand All @@ -24,17 +20,21 @@ default = ["std"]
std = []
# Enable JSON output in the `cli` example:
json_example = ["serde_json", "serde"]
visitor = ["sqlparser_derive"]
visitor = []
bigdecimal-sql = ["bigdecimal", "df_sqlparser/bigdecimal"]

[dependencies]
bigdecimal = { version = "0.4.1", features = ["serde"], optional = true }
df_sqlparser = { package = "sqlparser", version = "0.44.0" }
log = "0.4"
serde = { version = "1.0", features = ["derive"], optional = true }
# serde_json is only used in examples/cli, but we have to put it outside
# of dev-dependencies because of
# https://github.com/rust-lang/cargo/issues/1596
serde_json = { version = "1.0", optional = true }
sqlparser_derive = { version = "0.2.0", path = "derive", optional = true }
sqlparser_derive = { version = "0.2.0", path = "derive" }
regex = "1"
lazy_static = "1.4.0"

[dev-dependencies]
simple_logger = "4.0"
Expand Down
Loading

0 comments on commit c919990

Please sign in to comment.