mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 21:02:58 +00:00
* feat: change column's default property to nullable * chore: use all instead of any * fix: compile error * fix: dependencies order in cargo
53 lines
1.3 KiB
TOML
53 lines
1.3 KiB
TOML
[package]
|
|
name = "storage"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
arc-swap = "1.0"
|
|
async-compat = "0.2"
|
|
async-stream = "0.3"
|
|
async-trait = "0.1"
|
|
bytes = "1.1"
|
|
common-base = { path = "../common/base" }
|
|
common-error = { path = "../common/error" }
|
|
common-query = { path = "../common/query" }
|
|
common-runtime = { path = "../common/runtime" }
|
|
common-telemetry = { path = "../common/telemetry" }
|
|
common-time = { path = "../common/time" }
|
|
datatypes = { path = "../datatypes" }
|
|
futures = "0.3"
|
|
futures-util = "0.3"
|
|
lazy_static = "1.4"
|
|
object-store = { path = "../object-store" }
|
|
parquet = { version = "26", features = ["async"] }
|
|
paste = "1.0"
|
|
planus = "0.2"
|
|
prost = "0.11"
|
|
regex = "1.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sluice = "0.5"
|
|
snafu = { version = "0.7", features = ["backtraces"] }
|
|
store-api = { path = "../store-api" }
|
|
table = { path = "../table" }
|
|
tokio = { version = "1.18", features = ["full"] }
|
|
tonic = "0.8"
|
|
uuid = { version = "1.1", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
atomic_float = "0.1"
|
|
criterion = "0.3"
|
|
datatypes = { path = "../datatypes", features = ["test"] }
|
|
log-store = { path = "../log-store" }
|
|
rand = "0.8"
|
|
tempdir = "0.3"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.8"
|
|
|
|
[[bench]]
|
|
name = "bench_main"
|
|
harness = false
|