chore: Create datanode, datatypes, log-store, object-store, query, table crates

This commit is contained in:
evenyag
2022-04-20 15:09:50 +08:00
parent 7db9295b66
commit ced9a7c97f
14 changed files with 84 additions and 1 deletions

24
Cargo.lock generated
View File

@@ -5,3 +5,27 @@ version = 3
[[package]]
name = "common"
version = "0.1.0"
[[package]]
name = "datanode"
version = "0.1.0"
[[package]]
name = "datatypes"
version = "0.1.0"
[[package]]
name = "log-store"
version = "0.1.0"
[[package]]
name = "object-store"
version = "0.1.0"
[[package]]
name = "query"
version = "0.1.0"
[[package]]
name = "table"
version = "0.1.0"

View File

@@ -1,4 +1,10 @@
[workspace]
members = [
"src/common"
"src/common",
"src/datanode",
"src/datatypes",
"src/log-store",
"src/object-store",
"src/query",
"src/table",
]

8
src/datanode/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "datanode"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
src/datanode/src/lib.rs Normal file
View File

@@ -0,0 +1 @@

8
src/datatypes/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "datatypes"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

0
src/datatypes/src/lib.rs Normal file
View File

8
src/log-store/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "log-store"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
src/log-store/src/lib.rs Normal file
View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,8 @@
[package]
name = "object-store"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@@ -0,0 +1 @@

8
src/query/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "query"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
src/query/src/lib.rs Normal file
View File

@@ -0,0 +1 @@

8
src/table/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "table"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
src/table/src/lib.rs Normal file
View File

@@ -0,0 +1 @@