feat: add discover command

This commit is contained in:
Alexander Navarro 2025-01-23 11:39:55 -03:00
parent 48a582eb7e
commit fc0a9b4206
6 changed files with 261 additions and 12 deletions

View file

@ -7,6 +7,15 @@ edition = "2021"
chrono = "0.4.39"
clap = { version = "4.5.26", features = ["derive", "env"] }
futures = "0.3.31"
sea-schema = { version = "0.16.1", features = [
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
"discovery",
"probe",
"with-serde",
] }
serde = "1.0.217"
sqlx = { version = "0.8", features = [
"runtime-tokio",
"tls-native-tls",
@ -16,4 +25,5 @@ sqlx = { version = "0.8", features = [
] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["full"] }
toml = "0.8.19"
url = "2.5.4"