9 releases (breaking)

0.7.1 Mar 16, 2024
0.7.0 Mar 12, 2024
0.6.0 Oct 31, 2023
0.5.0 Jun 6, 2023
0.1.0 Aug 5, 2022

#2182 in Database interfaces

Download history 3/week @ 2023-12-04 2/week @ 2023-12-11 7/week @ 2023-12-18 3/week @ 2023-12-25 17/week @ 2024-01-01 4/week @ 2024-01-08 11/week @ 2024-01-15 7/week @ 2024-02-05 57/week @ 2024-02-12 37/week @ 2024-02-19 84/week @ 2024-02-26 80/week @ 2024-03-04 540/week @ 2024-03-11 111/week @ 2024-03-18

815 downloads per month
Used in 11 crates (7 directly)

Apache-2.0

53KB
1.5K SLoC

PartiQL Rust

Crate Docs License CI Build codecov

This is a collection of crates to provide Rust support for the PartiQL query language.

The crates in this repository are considered experimental, under active/early development, and APIs are subject to change.

This project uses workspaces to manage the crates in this repository. The partiql crate is intended to be the crate that exports all the relevant partiql-* sub-crate functionality. It is factored in this way to make applications needing only some sub-component of the PartiQL implementation possible (e.g. an application that only requires the PartiQL parser can depend on partiql-parser directly).

Development

This project uses a git submodule to pull in partiql-tests. The easiest way to pull everything in is to clone the repository recursively:

$ git clone --recursive https://github.com/partiql/partiql-lang-rust.git

You can also initialize the submodules as follows:

$ git submodule update --init --recursive

Running the conformance tests

Running cargo test from the partiql-lang-rust root will not run the conformance tests by default.

To run all the tests (including conformance tests), you will need to run cargo test with the "conformance_test" --features flag:

cargo test --features "conformance_test"

Or to run just the conformance tests:

cargo test --package partiql-conformance-tests --features "conformance_test"

More details on running individual tests can be found in the partiql-conformance-tests crate README.

Security

See CONTRIBUTING for more information.

License

This project is licensed under the Apache-2.0 License.

Dependencies

~6MB
~123K SLoC