This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 388f9ec3e7 fix: do not depend on time 0.1 (#5972)
388f9ec3e7 is described below
commit 388f9ec3e7f7c09dac56ee0fe074ca97a6af9d44
Author: Marco Neumann <[email protected]>
AuthorDate: Wed Apr 12 21:45:13 2023 +0200
fix: do not depend on time 0.1 (#5972)
Limit chrono features so we don't pull in time 0.1 which suffers from
<https://rustsec.org/advisories/RUSTSEC-2020-0071>.
---
datafusion/substrait/Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datafusion/substrait/Cargo.toml b/datafusion/substrait/Cargo.toml
index 08c1ed8a4e..5416ba9f38 100644
--- a/datafusion/substrait/Cargo.toml
+++ b/datafusion/substrait/Cargo.toml
@@ -29,7 +29,7 @@ rust-version = { workspace = true }
[dependencies]
async-recursion = "1.0"
-chrono = "0.4.23"
+chrono = { version = "0.4.23", default-features = false }
datafusion = { version = "22.0.0", path = "../core" }
itertools = "0.10.5"
object_store = "0.5.4"