mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-14 00:07:05 +00:00
8cad54cc9f
Co-authored-by: Stephen <webmaster@scd31.com>
13 lines
355 B
TOML
13 lines
355 B
TOML
[package]
|
|
name = "sqlx-example-postgres-chat"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
workspace = "../../../"
|
|
|
|
[dependencies]
|
|
sqlx = { path = "../../../", features = [ "postgres", "runtime-tokio-native-tls" ] }
|
|
futures = "0.3.1"
|
|
tokio = { version = "1.20.0", features = [ "rt-multi-thread", "macros" ] }
|
|
tui = "0.19.0"
|
|
crossterm = "0.25"
|
|
unicode-width = "0.1"
|