This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion-python.git
The following commit(s) were added to refs/heads/main by this push:
new a388040 add package.include and remove wildcard dependency (#295)
a388040 is described below
commit a3880400fb290e9c0428503b3fa2d5dacc7dceed
Author: Andy Grove <[email protected]>
AuthorDate: Wed Mar 22 08:35:54 2023 -0600
add package.include and remove wildcard dependency (#295)
---
Cargo.toml | 3 ++-
dev/release/README.md | 8 ++++++++
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index 03dafef..03cd684 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -26,6 +26,7 @@ readme = "README.md"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.64"
+include = ["/src", "/LICENSE.txt"]
[features]
default = ["mimalloc"]
@@ -41,7 +42,7 @@ datafusion-optimizer = { version = "20.0.0" }
datafusion-sql = { version = "20.0.0" }
datafusion-substrait = { version = "20.0.0" }
uuid = { version = "1.2", features = ["v4"] }
-mimalloc = { version = "*", optional = true, default-features = false }
+mimalloc = { version = "0.1", optional = true, default-features = false }
async-trait = "0.1"
futures = "0.3"
object_store = { version = "0.5.3", features = ["aws", "gcp", "azure"] }
diff --git a/dev/release/README.md b/dev/release/README.md
index cec0eef..84058a6 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -198,6 +198,14 @@ Create the source release tarball:
./dev/release/release-tarball.sh 0.8.0 1
```
+### Publishing Rust Crate to crates.io
+
+Some projects depend on the Rust crate directly, so we publish this to
crates.io
+
+```shell
+cargo publish
+```
+
### Publishing Python Artifacts to PyPi
Go to the Test PyPI page of Datafusion, and download