mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-18 22:10:42 +00:00
feat(store-api): Init store-api crate (#30)
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -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"
|
||||
|
||||
@@ -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
8
src/store-api/Cargo.toml
Normal 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
4
src/store-api/src/lib.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
//! Storage related APIs
|
||||
|
||||
pub mod storage;
|
||||
pub mod wal;
|
||||
1
src/store-api/src/storage.rs
Normal file
1
src/store-api/src/storage.rs
Normal file
@@ -0,0 +1 @@
|
||||
//! Storage APIs.
|
||||
1
src/store-api/src/wal.rs
Normal file
1
src/store-api/src/wal.rs
Normal file
@@ -0,0 +1 @@
|
||||
//! WAL APIs.
|
||||
Reference in New Issue
Block a user