mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-06-01 04:40:39 +00:00
* add metadata & handle_read Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * move metadata to store-api Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * dep aquamarine Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * remove deadcode Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * remove temporary code Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * Update src/store-api/Cargo.toml Co-authored-by: Lei, HUANG <6406592+v0y4g3r@users.noreply.github.com> * remove old mod Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com> Co-authored-by: Lei, HUANG <6406592+v0y4g3r@users.noreply.github.com>
28 lines
649 B
TOML
28 lines
649 B
TOML
[package]
|
|
name = "store-api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
api = { workspace = true }
|
|
aquamarine = "0.3"
|
|
async-trait.workspace = true
|
|
bytes = "1.1"
|
|
common-base = { workspace = true }
|
|
common-error = { workspace = true }
|
|
common-query = { workspace = true }
|
|
common-recordbatch = { workspace = true }
|
|
common-time = { workspace = true }
|
|
datatypes = { workspace = true }
|
|
derive_builder.workspace = true
|
|
futures.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
snafu.workspace = true
|
|
|
|
[dev-dependencies]
|
|
async-stream.workspace = true
|
|
serde_json = "1.0"
|
|
tokio.workspace = true
|