Skip to content

Commit 695455b

Browse files
committed
lift up fuse/fuse to fuse
1 parent f91de80 commit 695455b

File tree

98 files changed

+53
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+53
-53
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ members = [
4545
"src/query/sql",
4646
"src/query/storages/cache",
4747
"src/query/storages/factory",
48-
"src/query/storages/fuse/fuse",
48+
"src/query/storages/fuse",
4949
"src/query/storages/hive/hive",
5050
"src/query/storages/hive/hive-meta-store",
5151
"src/query/storages/index",

src/query/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ common-sql = { path = "../sql" }
5858
common-storage = { path = "../../common/storage" }
5959
common-storages-cache = { path = "../storages/cache" }
6060
common-storages-factory = { path = "../storages/factory" }
61-
common-storages-fuse = { path = "../storages/fuse/fuse" }
61+
common-storages-fuse = { path = "../storages/fuse" }
6262
common-storages-hive = { path = "../storages/hive/hive", optional = true }
6363
common-storages-index = { path = "../storages/index" }
6464
common-storages-information-schema = { path = "../storages/information-schema" }

src/query/storages/factory/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ common-catalog = { path = "../../catalog" }
1616
common-config = { path = "../../config" }
1717
common-exception = { path = "../../../common/exception" }
1818
common-meta-app = { path = "../../../meta/app" }
19-
common-storages-fuse = { path = "../fuse/fuse" }
19+
common-storages-fuse = { path = "../fuse" }
2020
common-storages-index = { path = "../index" }
2121
common-storages-memory = { path = "../memory" }
2222
common-storages-null = { path = "../null" }

src/query/storages/fuse/Cargo.toml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
[package]
2+
name = "common-storages-fuse"
3+
version = { workspace = true }
4+
authors = { workspace = true }
5+
license = { workspace = true }
6+
publish = { workspace = true }
7+
edition = { workspace = true }
8+
9+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
10+
[lib]
11+
doctest = false
12+
test = false
13+
14+
[dependencies]
15+
common-arrow = { path = "../../../common/arrow" }
16+
common-base = { path = "../../../common/base" }
17+
common-cache = { path = "../../../common/cache" }
18+
common-catalog = { path = "../../catalog" }
19+
common-config = { path = "../../config" }
20+
common-datablocks = { path = "../../datablocks" }
21+
common-datavalues = { path = "../../datavalues" }
22+
common-exception = { path = "../../../common/exception" }
23+
common-functions = { path = "../../functions" }
24+
common-meta-app = { path = "../../../meta/app" }
25+
common-meta-types = { path = "../../../meta/types" }
26+
common-pipeline-core = { path = "../../pipeline/core" }
27+
common-pipeline-sources = { path = "../../pipeline/sources" }
28+
common-pipeline-transforms = { path = "../../pipeline/transforms" }
29+
common-sharing = { path = "../../sharing" }
30+
common-sql = { path = "../../sql" }
31+
common-storage = { path = "../../../common/storage" }
32+
common-storages-cache = { path = "../cache" }
33+
common-storages-index = { path = "../index" }
34+
common-storages-pruner = { path = "../pruner" }
35+
common-storages-table-meta = { path = "../table-meta" }
36+
37+
async-trait = { version = "0.1.57", package = "async-trait-fn" }
38+
backoff = { version = "0.4.0", features = ["futures", "tokio"] }
39+
backon = "0.2"
40+
chrono = { workspace = true }
41+
futures = "0.3.24"
42+
futures-util = "0.3.24"
43+
itertools = "0.10.5"
44+
metrics = "0.20.1"
45+
opendal = "0.22"
46+
serde = { workspace = true }
47+
serde_json = { workspace = true }
48+
tracing = "0.1.36"
49+
typetag = "0.2.3"
50+
uuid = { version = "1.1.2", features = ["serde", "v4"] }

src/query/storages/fuse/fuse/Cargo.toml

-50
This file was deleted.

0 commit comments

Comments
 (0)