From 7383671fb26c2c2a35d4b1af47027dfc7fb21da7 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Wed, 20 Mar 2024 15:31:02 -0400 Subject: [PATCH] Minor: Change path from `common_runtime` to `common-runtime` --- Cargo.toml | 4 ++-- datafusion/{common_runtime => common-runtime}/Cargo.toml | 0 datafusion/{common_runtime => common-runtime}/README.md | 0 datafusion/{common_runtime => common-runtime}/src/common.rs | 0 datafusion/{common_runtime => common-runtime}/src/lib.rs | 0 5 files changed, 2 insertions(+), 2 deletions(-) rename datafusion/{common_runtime => common-runtime}/Cargo.toml (100%) rename datafusion/{common_runtime => common-runtime}/README.md (100%) rename datafusion/{common_runtime => common-runtime}/src/common.rs (100%) rename datafusion/{common_runtime => common-runtime}/src/lib.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index d9e69e53db7c..abe6d2c1744b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ exclude = ["datafusion-cli"] members = [ "datafusion/common", - "datafusion/common_runtime", + "datafusion/common-runtime", "datafusion/core", "datafusion/expr", "datafusion/execution", @@ -73,7 +73,7 @@ ctor = "0.2.0" dashmap = "5.4.0" datafusion = { path = "datafusion/core", version = "36.0.0", default-features = false } datafusion-common = { path = "datafusion/common", version = "36.0.0", default-features = false } -datafusion-common-runtime = { path = "datafusion/common_runtime", version = "36.0.0" } +datafusion-common-runtime = { path = "datafusion/common-runtime", version = "36.0.0" } datafusion-execution = { path = "datafusion/execution", version = "36.0.0" } datafusion-expr = { path = "datafusion/expr", version = "36.0.0" } datafusion-functions = { path = "datafusion/functions", version = "36.0.0" } diff --git a/datafusion/common_runtime/Cargo.toml b/datafusion/common-runtime/Cargo.toml similarity index 100% rename from datafusion/common_runtime/Cargo.toml rename to datafusion/common-runtime/Cargo.toml diff --git a/datafusion/common_runtime/README.md b/datafusion/common-runtime/README.md similarity index 100% rename from datafusion/common_runtime/README.md rename to datafusion/common-runtime/README.md diff --git a/datafusion/common_runtime/src/common.rs b/datafusion/common-runtime/src/common.rs similarity index 100% rename from datafusion/common_runtime/src/common.rs rename to datafusion/common-runtime/src/common.rs diff --git a/datafusion/common_runtime/src/lib.rs b/datafusion/common-runtime/src/lib.rs similarity index 100% rename from datafusion/common_runtime/src/lib.rs rename to datafusion/common-runtime/src/lib.rs