Skip to content

Commit

Permalink
Reference ion-rust unrelease changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jpschorr committed Jan 3, 2025
1 parent c4647ca commit c0ac4e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,6 @@ unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
# List of URLs for allowed Git repositories
allow-git = [
"https://github.com/amazon-ion/ion-rust"
]

2 changes: 1 addition & 1 deletion extension/partiql-extension-ion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ unicase = "2.7"
rust_decimal = { version = "1.36.0", default-features = false, features = ["std"] }
rust_decimal_macros = "1.36"
ion-rs_old = { version = "0.18", package = "ion-rs" }
ion-rs = { version = "1.0.0-rc.10", features = ["experimental"] }
ion-rs = { version = "1.0.0-rc.10", features = ["experimental"], git = "https://github.com/amazon-ion/ion-rust", branch = "feat-decon-owned-elt" }

time = { version = "0.3", features = ["macros"] }
once_cell = "1"
Expand Down
2 changes: 1 addition & 1 deletion extension/partiql-extension-ion/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl ToPartiqlValue<Element> for ion_rs::Str {

impl ToPartiqlValue<Element> for ion_rs::Bytes {
fn into_partiql_value(self) -> DatumLowerResult<PartiqlValueTarget<Element>> {
Ok(Value::Blob(Box::new(self.into_bytes())).into())
Ok(Value::Blob(Box::new(self.into())).into())
}
}

Expand Down

0 comments on commit c0ac4e3

Please sign in to comment.