chore: add pg mysql be default feature in cli (#6230)

This commit is contained in:
localhost
2025-06-03 15:09:26 +08:00
committed by GitHub
parent 078d83cec2
commit 477e4cc344
2 changed files with 10 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ edition.workspace = true
license.workspace = true
[features]
default = [
"pg_kvbackend",
"mysql_kvbackend",
]
pg_kvbackend = ["common-meta/pg_kvbackend"]
mysql_kvbackend = ["common-meta/mysql_kvbackend"]

View File

@@ -10,7 +10,12 @@ name = "greptime"
path = "src/bin/greptime.rs"
[features]
default = ["servers/pprof", "servers/mem-prof", "meta-srv/pg_kvbackend", "meta-srv/mysql_kvbackend"]
default = [
"servers/pprof",
"servers/mem-prof",
"meta-srv/pg_kvbackend",
"meta-srv/mysql_kvbackend",
]
tokio-console = ["common-telemetry/tokio-console"]
[lints]