Skip to content

Commit 277dd36

Browse files
refactor(cli): replace promptly with dialoguer (#3669)
1 parent 9bd3d61 commit 277dd36

File tree

4 files changed

+92
-183
lines changed

4 files changed

+92
-183
lines changed

Cargo.lock

+25-158
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sqlx-cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ path = "src/bin/cargo-sqlx.rs"
2626

2727
[dependencies]
2828
dotenvy = "0.15.0"
29-
tokio = { version = "1.15.0", features = ["macros", "rt", "rt-multi-thread"] }
29+
tokio = { version = "1.15.0", features = ["macros", "rt", "rt-multi-thread", "signal"] }
3030
sqlx = { workspace = true, default-features = false, features = [
3131
"runtime-tokio",
3232
"migrate",
@@ -38,7 +38,7 @@ clap_complete = { version = "4.3.1", optional = true }
3838
chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
3939
anyhow = "1.0.52"
4040
console = "0.15.0"
41-
promptly = "0.3.0"
41+
dialoguer = { version = "0.11", default-features = false }
4242
serde_json = "1.0.73"
4343
glob = "0.3.0"
4444
openssl = { version = "0.10.38", optional = true }

0 commit comments

Comments
 (0)