diff --git a/Cargo.lock b/Cargo.lock old mode 100755 new mode 100644 index b6bc5d8e..53b7ea11 --- a/Cargo.lock +++ b/Cargo.lock @@ -1039,6 +1039,12 @@ version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" +[[package]] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + [[package]] name = "equivalent" version = "1.0.1" @@ -1935,11 +1941,12 @@ checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "postcard" -version = "1.0.7" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d534c6e61df1c7166e636ca612d9820d486fe96ddad37f7abc671517b297488e" +checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8" dependencies = [ "cobs", + "embedded-io", "heapless", "serde", ] diff --git a/native-engine/datafusion-ext-commons/Cargo.toml b/native-engine/datafusion-ext-commons/Cargo.toml index 9eb98219..e2d6070b 100644 --- a/native-engine/datafusion-ext-commons/Cargo.toml +++ b/native-engine/datafusion-ext-commons/Cargo.toml @@ -23,7 +23,7 @@ log = "0.4.14" num = "0.4.0" once_cell = "1.11.0" paste = "1.0.7" -postcard = { version = "1.0.4", features = ["alloc"]} +postcard = { version = "1.0.8", features = ["alloc"]} tempfile = "3" thrift = "0.17.0" tokio = "1.19"