From d173581f6e0943ce5b294cdfbcf13be38617d5f4 Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Sun, 6 Oct 2024 06:24:02 -0600 Subject: [PATCH] Update cargo toml (#21) --- Cargo.lock | 4 +--- Cargo.toml | 12 +++++------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c0bea07..a2757ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1113,14 +1113,13 @@ dependencies = [ [[package]] name = "datafusion_ray" -version = "0.6.0" +version = "0.1.0" dependencies = [ "anyhow", "datafusion", "datafusion-proto", "datafusion-python", "futures", - "glob", "log", "pretty_assertions", "prost 0.12.6", @@ -1130,7 +1129,6 @@ dependencies = [ "rustc_version", "tokio", "tonic-build", - "uuid", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 53bb6c0..2f024f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,10 +18,10 @@ [package] name = "datafusion_ray" description = "DataFusion on Ray" -homepage = "https://github.com/datafusion-contrib/ray-sql" -repository = "https://github.com/datafusion-contrib/ray-sql" -authors = ["Andy Grove ", "Frank Luan "] -version = "0.6.0" +homepage = "https://github.com/apache/datafusion-ray" +repository = "https://github.com/apache/datafusion-ray" +authors = ["Apache DataFusion "] +version = "0.1.0" edition = "2021" readme = "README.md" license = "Apache-2.0" @@ -33,15 +33,13 @@ datafusion = { version = "41.0.0", features = ["pyarrow", "avro"] } datafusion-proto = "41.0.0" datafusion-python = "41.0.0" futures = "0.3" -glob = "0.3" log = "0.4" prost = "0.12" -prost-types = "0.12" pyo3 = { version = "0.21", features = ["extension-module", "abi3", "abi3-py38"] } tokio = { version = "1.40", features = ["macros", "rt", "rt-multi-thread", "sync"] } -uuid = "1.2" [build-dependencies] +prost-types = "0.12" rustc_version = "0.4.0" tonic-build = { version = "0.8", default-features = false, features = ["transport", "prost"] }