mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-09 06:42:57 +00:00
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
name = "file-engine"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
test = ["common-test-util"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
api.workspace = true
|
|
async-trait.workspace = true
|
|
common-catalog.workspace = true
|
|
common-datasource.workspace = true
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-procedure.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-test-util = { workspace = true, optional = true }
|
|
common-time.workspace = true
|
|
datafusion.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datatypes.workspace = true
|
|
futures.workspace = true
|
|
object-store.workspace = true
|
|
object_store_opendal.workspace = true
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json.workspace = true
|
|
snafu.workspace = true
|
|
store-api.workspace = true
|
|
table.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[dev-dependencies]
|
|
api.workspace = true
|
|
common-test-util.workspace = true
|