From df191dc4efa6740d0559d4e4dfe38330a53f7646 Mon Sep 17 00:00:00 2001 From: Jeffrey Vo Date: Tue, 15 Oct 2024 20:44:34 +1100 Subject: [PATCH] Release 0.4.1 to fix features on docs.rs page (#130) --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9940261e..fec4f61c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orc-rust" -version = "0.4.0" +version = "0.4.1" edition = "2021" homepage = "https://github.com/datafusion-contrib/datafusion-orc" repository = "https://github.com/datafusion-contrib/datafusion-orc" @@ -11,6 +11,9 @@ keywords = ["arrow", "orc", "arrow-rs", "datafusion"] include = ["src/**/*.rs", "Cargo.toml"] rust-version = "1.73" +[package.metadata.docs.rs] +all-features = true + [dependencies] arrow = { version = "52", features = ["prettyprint", "chrono-tz"] } bytemuck = { version = "1.18.0", features = ["must_cast"] }