mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 05:42:57 +00:00
* feat: decimal128 vector * feat: Decimal128Type in datatypes * refactor: cast function * feat: decimal128 type in ConcreteDataType * chore: decimal * chore: sql_data_type_to_concrete_data_type * chore: cr comment Co-authored-by: Dennis Zhuang <killme2008@gmail.com> Co-authored-by: Yingwen <realevenyag@gmail.com> * chore: fix finish() * chore: add debug_assert to new decimal128 --------- Co-authored-by: Dennis Zhuang <killme2008@gmail.com> Co-authored-by: Yingwen <realevenyag@gmail.com>
69 lines
1.7 KiB
TOML
69 lines
1.7 KiB
TOML
[package]
|
|
name = "mito2"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
test = ["common-test-util", "log-store"]
|
|
|
|
[dependencies]
|
|
anymap = "1.0.0-beta.2"
|
|
api.workspace = true
|
|
aquamarine.workspace = true
|
|
arc-swap = "1.6"
|
|
async-channel = "1.9"
|
|
async-compat = "0.2"
|
|
async-stream.workspace = true
|
|
async-trait = "0.1"
|
|
bytes = "1.4"
|
|
chrono.workspace = true
|
|
common-base.workspace = true
|
|
common-catalog.workspace = true
|
|
common-datasource.workspace = true
|
|
common-decimal.workspace = true
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-procedure.workspace = true
|
|
common-query.workspace = true
|
|
common-recordbatch.workspace = true
|
|
common-runtime.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-test-util = { workspace = true, optional = true }
|
|
common-time.workspace = true
|
|
dashmap = "5.4"
|
|
datafusion-common.workspace = true
|
|
datafusion-expr.workspace = true
|
|
datafusion.workspace = true
|
|
datatypes.workspace = true
|
|
futures.workspace = true
|
|
humantime-serde.workspace = true
|
|
lazy_static = "1.4"
|
|
log-store = { workspace = true, optional = true }
|
|
memcomparable = "0.2"
|
|
moka = { workspace = true, features = ["sync"] }
|
|
num_cpus = "1.13"
|
|
object-store.workspace = true
|
|
parquet = { workspace = true, features = ["async"] }
|
|
paste.workspace = true
|
|
prometheus.workspace = true
|
|
prost.workspace = true
|
|
regex = "1.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json.workspace = true
|
|
serde_with = "3"
|
|
smallvec.workspace = true
|
|
snafu.workspace = true
|
|
store-api.workspace = true
|
|
strum.workspace = true
|
|
table.workspace = true
|
|
tokio-util.workspace = true
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
common-procedure-test.workspace = true
|
|
common-test-util.workspace = true
|
|
log-store.workspace = true
|