mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-29 21:00:54 +00:00
This fixes `cargo check --workspace` and rust-analyzer. Also see <https://github.com/launchbadge/sqlx/discussions/1956>.
11 lines
291 B
TOML
11 lines
291 B
TOML
[package]
|
|
name = "sqlx-example-postgres-transaction"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
workspace = "../../../"
|
|
|
|
[dependencies]
|
|
sqlx = { path = "../../../", features = [ "postgres", "tls", "runtime-tokio-native-tls" ] }
|
|
futures = "0.3.1"
|
|
tokio = { version = "1.20.0", features = ["macros"]}
|