mirror of
https://github.com/roapi/roapi.git
synced 2026-06-05 21:04:02 +08:00
bump datafusion to 5.0.0 release
This commit is contained in:
parent
a7255de838
commit
d4a2ad9d84
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -736,8 +736,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "datafusion"
|
||||
version = "4.0.0-SNAPSHOT"
|
||||
source = "git+https://github.com/houqp/arrow-datafusion.git?rev=4ddd2f5e7582ffe662aea27bbb74c58cd0715152#4ddd2f5e7582ffe662aea27bbb74c58cd0715152"
|
||||
version = "5.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "aab48ee19b13cfe7523ae84ec203a1ca05ce1fda52f1ac0e45d87df90c548732"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"arrow",
|
||||
@ -2196,7 +2197,6 @@ dependencies = [
|
||||
"actix-service",
|
||||
"actix-web",
|
||||
"anyhow",
|
||||
"arrow",
|
||||
"clap",
|
||||
"columnq",
|
||||
"env_logger",
|
||||
|
||||
@ -9,7 +9,7 @@ name = "columnq"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
columnq = { path = "../columnq" }
|
||||
columnq = { path = "../columnq", version = "0" }
|
||||
|
||||
serde_json = "*"
|
||||
log = "0"
|
||||
|
||||
@ -11,8 +11,8 @@ path = "src/lib.rs"
|
||||
[dependencies]
|
||||
arrow = "5"
|
||||
parquet = "5"
|
||||
# datafusion = "5"
|
||||
datafusion = { git = "https://github.com/houqp/arrow-datafusion.git", rev = "4ddd2f5e7582ffe662aea27bbb74c58cd0715152" }
|
||||
datafusion = "5"
|
||||
# datafusion = { git = "https://github.com/houqp/arrow-datafusion.git", rev = "4ddd2f5e7582ffe662aea27bbb74c58cd0715152" }
|
||||
|
||||
log = "0"
|
||||
regex = "1"
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
use std::fmt;
|
||||
|
||||
use datafusion::arrow;
|
||||
use datafusion::error::DataFusionError;
|
||||
use uriparse::uri_reference::URIReferenceError;
|
||||
|
||||
|
||||
@ -13,8 +13,7 @@ name = "roapi-http"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
columnq = { path = "../columnq" }
|
||||
arrow = "5"
|
||||
columnq = { path = "../columnq", version = "0" }
|
||||
|
||||
# all actix dependencies are patched to use git source until actix-web 4.x lands
|
||||
actix-web = "4.0.0-beta.4"
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
use std::convert::TryFrom;
|
||||
|
||||
use actix_web::{http, HttpRequest, HttpResponse};
|
||||
use columnq::datafusion::arrow;
|
||||
use columnq::encoding;
|
||||
use columnq::ColumnQ;
|
||||
use log::info;
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
use std::fmt;
|
||||
|
||||
use actix_web::{http, HttpResponse};
|
||||
use columnq::datafusion::arrow;
|
||||
use columnq::error::QueryError;
|
||||
use serde::Serializer;
|
||||
use serde_derive::Serialize;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user