mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-30 03:40:37 +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>
31 lines
670 B
TOML
31 lines
670 B
TOML
[package]
|
|
name = "datatypes"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
test = []
|
|
|
|
[dependencies]
|
|
arrow-array.workspace = true
|
|
arrow-schema.workspace = true
|
|
arrow.workspace = true
|
|
common-base.workspace = true
|
|
common-decimal.workspace = true
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-telemetry.workspace = true
|
|
common-time.workspace = true
|
|
datafusion-common.workspace = true
|
|
enum_dispatch = "0.3"
|
|
num = "0.4"
|
|
num-traits = "0.2"
|
|
ordered-float = { version = "3.0", features = ["serde"] }
|
|
paste = "1.0"
|
|
rust_decimal = "1.32.0"
|
|
serde.workspace = true
|
|
serde_json = "1.0"
|
|
snafu.workspace = true
|