[package]
edition = "2021"
rust-version = "1.62"
name = "sql_query_builder"
version = "2.7.2"
authors = ["Belchior Oliveira <belchior@outlook.com>"]
build = false
exclude = [
".github",
".vscode",
"scripts",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Write SQL queries in a simple and composable way"
documentation = "https://docs.rs/sql_query_builder"
readme = "README.md"
keywords = [
"sql",
"query",
"postgres",
"sqlite",
"mysql",
]
license = "MIT"
repository = "https://github.com/belchior/sql_query_builder"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
features = [
"postgresql",
"sqlite",
"mysql",
]
[features]
mysql = []
postgresql = []
sqlite = []
[lib]
name = "sql_query_builder"
path = "src/lib.rs"
[[test]]
name = "clause_except_spec"
path = "tests/clause_except_spec.rs"
[[test]]
name = "clause_from_spec"
path = "tests/clause_from_spec.rs"
[[test]]
name = "clause_group_by_spec"
path = "tests/clause_group_by_spec.rs"
[[test]]
name = "clause_having_spec"
path = "tests/clause_having_spec.rs"
[[test]]
name = "clause_intersect_spec"
path = "tests/clause_intersect_spec.rs"
[[test]]
name = "clause_join_spec"
path = "tests/clause_join_spec.rs"
[[test]]
name = "clause_limit_spec"
path = "tests/clause_limit_spec.rs"
[[test]]
name = "clause_offset_spec"
path = "tests/clause_offset_spec.rs"
[[test]]
name = "clause_order_by_spec"
path = "tests/clause_order_by_spec.rs"
[[test]]
name = "clause_partition_spec"
path = "tests/clause_partition_spec.rs"
[[test]]
name = "clause_replace_into_spec"
path = "tests/clause_replace_into_spec.rs"
[[test]]
name = "clause_returning_spec"
path = "tests/clause_returning_spec.rs"
[[test]]
name = "clause_row_spec"
path = "tests/clause_row_spec.rs"
[[test]]
name = "clause_select_spec"
path = "tests/clause_select_spec.rs"
[[test]]
name = "clause_set_spec"
path = "tests/clause_set_spec.rs"
[[test]]
name = "clause_union_spec"
path = "tests/clause_union_spec.rs"
[[test]]
name = "clause_update_or_spec"
path = "tests/clause_update_or_spec.rs"
[[test]]
name = "clause_update_spec"
path = "tests/clause_update_spec.rs"
[[test]]
name = "clause_values_spec"
path = "tests/clause_values_spec.rs"
[[test]]
name = "clause_where_spec"
path = "tests/clause_where_spec.rs"
[[test]]
name = "clause_window_spec"
path = "tests/clause_window_spec.rs"
[[test]]
name = "clause_with_spec"
path = "tests/clause_with_spec.rs"
[[test]]
name = "command_alter_table_spec"
path = "tests/command_alter_table_spec.rs"
[[test]]
name = "command_begin_spec"
path = "tests/command_begin_spec.rs"
[[test]]
name = "command_commit_spec"
path = "tests/command_commit_spec.rs"
[[test]]
name = "command_create_index_spec"
path = "tests/command_create_index_spec.rs"
[[test]]
name = "command_create_table_spec"
path = "tests/command_create_table_spec.rs"
[[test]]
name = "command_delete_spec"
path = "tests/command_delete_spec.rs"
[[test]]
name = "command_drop_index_spec"
path = "tests/command_drop_index_spec.rs"
[[test]]
name = "command_drop_table_spec"
path = "tests/command_drop_table_spec.rs"
[[test]]
name = "command_end_spec"
path = "tests/command_end_spec.rs"
[[test]]
name = "command_insert_spec"
path = "tests/command_insert_spec.rs"
[[test]]
name = "command_release_savepoint_spec"
path = "tests/command_release_savepoint_spec.rs"
[[test]]
name = "command_rollback_spec"
path = "tests/command_rollback_spec.rs"
[[test]]
name = "command_savepoint_spec"
path = "tests/command_savepoint_spec.rs"
[[test]]
name = "command_select_spec"
path = "tests/command_select_spec.rs"
[[test]]
name = "command_set_transaction_spec"
path = "tests/command_set_transaction_spec.rs"
[[test]]
name = "command_start_transaction_spec"
path = "tests/command_start_transaction_spec.rs"
[[test]]
name = "command_transaction_spec"
path = "tests/command_transaction_spec.rs"
[[test]]
name = "command_update_spec"
path = "tests/command_update_spec.rs"
[[test]]
name = "command_values_spec"
path = "tests/command_values_spec.rs"
[dev-dependencies.pretty_assertions]
version = "=1.4.0"