feat(store-api): Init store-api crate (#30)

This commit is contained in:
evenyag
2022-05-18 17:19:57 +08:00
committed by GitHub
parent 519cbc832a
commit 5777732fde
6 changed files with 19 additions and 0 deletions

4
Cargo.lock generated
View File

@@ -2796,6 +2796,10 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "store-api"
version = "0.1.0"
[[package]]
name = "streaming-decompression"
version = "0.1.0"

View File

@@ -13,5 +13,6 @@ members = [
"src/object-store",
"src/query",
"src/sql",
"src/store-api",
"src/table",
]

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

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

4
src/store-api/src/lib.rs Normal file
View File

@@ -0,0 +1,4 @@
//! Storage related APIs
pub mod storage;
pub mod wal;

View File

@@ -0,0 +1 @@
//! Storage APIs.

1
src/store-api/src/wal.rs Normal file
View File

@@ -0,0 +1 @@
//! WAL APIs.