You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It might be good to clarify somewhere that the bundled feature works only when the exact version being bundled is selected with a = in front (at least that's what I needed to make it work):
during build:
POSTGRESQL_VERSION=15.13.0
and then
let pg_settings = Settings {
version: VersionReq::from_str(format!("={}", env!("POSTGRESQL_VERSION")).as_str())?,
..Default::default()
};