pg_str/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Normal View History

2023-02-13 21:22:29 -08:00
[package]
name = "pg_str"
version = "0.3.0"
edition = "2021"
authors = ["Matt<matt@publicmatt.com"]
include = [
"**/*.rs",
"Cargo.toml",
"README.md"
]
readme = "README.md"
2023-12-14 13:48:45 -08:00
repository = "https://gitea.publicmatt.com/public/pg_str"
2023-02-13 21:22:29 -08:00
documentation = "https://docs.rs/pg_str"
2023-12-14 13:48:45 -08:00
homepage = "https://gitea.publicmatt.com/public/pg_str"
2023-02-13 21:22:29 -08:00
license="MIT"
description = """
Adds str functions to Postgresql via an extension."""
keywords = ["postgresql", "string", "cases", "pluralize", "markdown"]
categories = ["text-processing", "database"]
[lib]
crate-type = ["cdylib"]
[features]
default = ["pg13"]
2023-12-14 13:48:45 -08:00
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"]
2023-02-13 21:22:29 -08:00
pg_test = []
[dependencies]
2023-12-14 13:48:45 -08:00
pgrx = "=0.11.2"
2023-02-13 21:22:29 -08:00
Inflector = "0.11.4"
str_slug = "0.1.3"
pulldown-cmark = "0.9.1"
any_ascii = "0.3.0"
rand = "0.8.4"
uuid = "1.2.2"
[dev-dependencies]
2023-12-14 13:48:45 -08:00
pgrx-tests = "=0.11.2"
2023-02-13 21:22:29 -08:00
[profile.dev]
panic = "unwind"
lto = "thin"
[profile.release]
panic = "unwind"
opt-level = 3
lto = "fat"
codegen-units = 1