mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 05:42:57 +00:00
* feat: add build function and register it build() function to return the database build info #2909 * refactor: fix typos and change code structure * test: add test for build() * refactor: cargo fmt and eliminate warnings * Apply suggestions from code review Co-authored-by: Weny Xu <wenymedia@gmail.com> * refactor: move system.sql to a new directory --------- Co-authored-by: Weny Xu <wenymedia@gmail.com>
28 lines
561 B
TOML
28 lines
561 B
TOML
[package]
|
|
name = "common-function"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
arc-swap = "1.0"
|
|
build-data = "0.1"
|
|
chrono-tz = "0.6"
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
common-query.workspace = true
|
|
common-time.workspace = true
|
|
datafusion.workspace = true
|
|
datatypes.workspace = true
|
|
libc = "0.2"
|
|
num = "0.4"
|
|
num-traits = "0.2"
|
|
once_cell.workspace = true
|
|
paste = "1.0"
|
|
snafu.workspace = true
|
|
statrs = "0.16"
|
|
|
|
[dev-dependencies]
|
|
ron = "0.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|