mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-25 01:10:37 +00:00
* fix: test on windows * fix: fix windows root * fix: use relative path instead of root * fix: remove incorrect replace * fix: fix tests --------- Co-authored-by: WenyXu <wenymedia@gmail.com>
39 lines
819 B
TOML
39 lines
819 B
TOML
[package]
|
|
name = "common-datasource"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
arrow-schema.workspace = true
|
|
arrow.workspace = true
|
|
async-compression = { version = "0.3", features = [
|
|
"bzip2",
|
|
"gzip",
|
|
"xz",
|
|
"zstd",
|
|
"futures-io",
|
|
"tokio",
|
|
] }
|
|
async-trait.workspace = true
|
|
bytes = "1.1"
|
|
common-error = { workspace = true }
|
|
common-runtime = { workspace = true }
|
|
datafusion.workspace = true
|
|
derive_builder.workspace = true
|
|
futures.workspace = true
|
|
lazy_static.workspace = true
|
|
object-store = { workspace = true }
|
|
orc-rust = "0.2"
|
|
paste = "1.0"
|
|
regex = "1.7"
|
|
serde.workspace = true
|
|
snafu.workspace = true
|
|
strum.workspace = true
|
|
tokio-util.workspace = true
|
|
tokio.workspace = true
|
|
url = "2.3"
|
|
|
|
[dev-dependencies]
|
|
common-test-util = { workspace = true }
|