diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 3313433d..4e7854ca 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -31,11 +31,11 @@ tokio = { version = "1.29", features = ["rt"] } tracing = "0.1.37" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -tokio-postgres = "0.7.9" +tokio-postgres = { git = "https://github.com/chandr-andr/rust-postgres.git", branch = "master" } [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { version = "0.2", features = ["js"] } -tokio-postgres = { version = "0.7.9", default-features = false } +tokio-postgres = { git = "https://github.com/chandr-andr/rust-postgres.git", branch = "master", default-features = false } [dev-dependencies] config = { version = "0.14", features = ["json"] }