[package]
edition = "2024"
name = "pgroles-inspect"
version = "0.10.0"
authors = ["Brian Thorne <brian@partly.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Database introspection, version detection, and privilege checks for pgroles"
homepage = "https://github.com/thepartly/pgroles"
readme = "README.md"
keywords = [
"postgresql",
"roles",
"privileges",
"database",
"infrastructure",
]
categories = [
"database",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/thepartly/pgroles"
resolver = "2"
[lib]
name = "pgroles_inspect"
path = "src/lib.rs"
[[test]]
name = "config_roundtrip"
path = "tests/config_roundtrip.rs"
[[test]]
name = "diff_property_live"
path = "tests/diff_property_live.rs"
[[test]]
name = "foreign_grantor_revoke_live"
path = "tests/foreign_grantor_revoke_live.rs"
[[test]]
name = "grantor_targeted_revokes_live"
path = "tests/grantor_targeted_revokes_live.rs"
[[test]]
name = "predefined_memberships_live"
path = "tests/predefined_memberships_live.rs"
[[test]]
name = "public_delegated_grants_live"
path = "tests/public_delegated_grants_live.rs"
[[test]]
name = "shared_snapshot_live"
path = "tests/shared_snapshot_live.rs"
[[test]]
name = "valid_until_live"
path = "tests/valid_until_live.rs"
[dependencies.pgroles-core]
version = "0.10.0"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"postgres",
"tls-rustls",
]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1.52.1"
features = ["full"]