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
feat(cargo-pgrx): build extensions with specified Rust version
This change allows developers to target specific Rust versions for
building extensions. It implements support for building cargo extensions
and `cargo-pgrx` using the specified Rust version.
or(throw"Unsupported pgrx version ${pgrxVersion}. Available versions: ${builtins.toString(builtins.attrNamesversions)}. Change 'nix/cargo-pgrx/versions.json' to add support for new versions.");
29
+
or(throw"Unsupported pgrx version ${pgrxVersion}. Available versions: ${builtins.attrNamesversions}. Change 'nix/cargo-pgrx/versions.json' to add support for new versions.");
23
30
mapping={
24
31
inherit(pgrx)hash;
25
32
cargoHash=
26
33
pgrx.rust."${rustVersion}".cargoHash
27
-
or(throw"Unsupported rust version ${rustVersion} for pgrx version ${pgrxVersion}. Available Rust versions: ${builtins.toString(builtins.attrNamespgrx.rust)}. Change 'nix/cargo-pgrx/versions.json' to add support for new versions.");
34
+
or(throw"Unsupported rust version ${rustVersion} for pgrx version ${pgrxVersion}. Available Rust versions: ${builtins.attrNamespgrx.rust}. Change 'nix/cargo-pgrx/versions.json' to add support for new versions.");
0 commit comments