Adding sqlparser library as a dependency

Run this command in a terminal, in your project's directory:

cargo add sqlparser

To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:

sqlparser = "0.60.0"

The sqlparser library will be automatically available globally. Read the sqlparser library documentation.

Back to the crate overview.