This is an automated email from the ASF dual-hosted git repository.
findepi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 035fd3b07b chore: macros crate cleanup (#13685)
035fd3b07b is described below
commit 035fd3b07ba5e6c0ec82e54d2637dec49c092895
Author: Piotr Findeisen <[email protected]>
AuthorDate: Sat Dec 7 22:13:56 2024 +0100
chore: macros crate cleanup (#13685)
* Remove unused dependencies from macros crate
* rename macro lib to user_doc
---
datafusion-cli/Cargo.lock | 1 -
datafusion/macros/Cargo.toml | 4 ++--
datafusion/macros/src/{lib.rs => user_doc.rs} | 0
3 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/datafusion-cli/Cargo.lock b/datafusion-cli/Cargo.lock
index c871b2fdda..015bc1e0c3 100644
--- a/datafusion-cli/Cargo.lock
+++ b/datafusion-cli/Cargo.lock
@@ -1517,7 +1517,6 @@ dependencies = [
name = "datafusion-macros"
version = "43.0.0"
dependencies = [
- "datafusion-doc",
"proc-macro2",
"quote",
"syn",
diff --git a/datafusion/macros/Cargo.toml b/datafusion/macros/Cargo.toml
index c5ac9d08df..07aa07fa92 100644
--- a/datafusion/macros/Cargo.toml
+++ b/datafusion/macros/Cargo.toml
@@ -32,11 +32,11 @@ workspace = true
[lib]
name = "datafusion_macros"
-path = "src/lib.rs"
+# lib.rs to be re-added in the future
+path = "src/user_doc.rs"
proc-macro = true
[dependencies]
-datafusion-doc = { workspace = true }
proc-macro2 = "1.0"
quote = "1.0.37"
syn = { version = "2.0.79", features = ["full"] }
diff --git a/datafusion/macros/src/lib.rs b/datafusion/macros/src/user_doc.rs
similarity index 100%
rename from datafusion/macros/src/lib.rs
rename to datafusion/macros/src/user_doc.rs
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]