Skip to content

Commit

Permalink
bump cargo_toml version
Browse files Browse the repository at this point in the history
  • Loading branch information
usamoi committed Jan 30, 2025
1 parent c944bde commit 8e2b5c6
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 35 deletions.
66 changes: 33 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pgrx-bindgen = { path = "./pgrx-bindgen", version = "=0.12.7" }

cargo_metadata = "0.18.0"
cargo-edit = "0.12.2" # format-preserving edits to cargo.toml
cargo_toml = "0.19" # used for building projects
cargo_toml = "0.21" # used for building projects
clap-cargo = { version = "0.14.0", features = [ "cargo_metadata" ] }
eyre = "~0.6.12" # simplifies error-handling
libc = "0.2" # FFI compat
Expand Down
2 changes: 1 addition & 1 deletion cargo-pgrx/src/command/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ fn compute_codegen(
for name in symbols.iter() {
let name_ident = Ident::new(name, Span::call_site());
out.extend(quote::quote! {
extern "Rust" {
unsafe extern "Rust" {
fn #name_ident() -> ::pgrx::pgrx_sql_entity_graph::SqlGraphEntity;
}
let entity = unsafe { #name_ident() };
Expand Down

0 comments on commit 8e2b5c6

Please sign in to comment.