[package] name = "pg_bm25" description = "Full text search for PostgreSQL using BM25" version = "0.4.0" edition = "2021" license = "Elastic-2.0" [lib] crate-type = ["cdylib"] [features] default = ["pg15"] pg11 = ["pgrx/pg11", "pgrx-tests/pg11"] pg12 = ["pgrx/pg12", "pgrx-tests/pg12"] pg13 = ["pgrx/pg13", "pgrx-tests/pg13"] pg14 = ["pgrx/pg14", "pgrx-tests/pg14"] pg15 = ["pgrx/pg15", "pgrx-tests/pg15"] pg_test = [] [dependencies] pgrx = "=0.9.8" rustc-hash = "1.1.0" serde = "1.0.188" serde_json = "1.0.105" tantivy = { version = "0.21.0", package = "paradedb-tantivy" } [dev-dependencies] pgrx-tests = "=0.9.8" [profile.dev] panic = "unwind" [profile.release] panic = "unwind" opt-level = 3 lto = "fat" codegen-units = 1