Closed itschrono closed 3 years ago
My pg-embed version is 0.6.1 but I tried with 0.6.0 and 0.5.4 and got the same error.
Hi, I'm looking into this. Could you please post your Cargo.toml dependency settings. Thanks in advance
Of course:
[dependencies]
futures = "0.3.17"
pg-embed = { version = "=0.6.1", default-features = false, features = ["rt_tokio"] }
tokio = { version = "=1.13.0", features = ["full"] }
I published a new version (v0.6.4). Hopefully it will now work for you. Had to remove part of the logging on Windows for it to work, because the Windows console is not properly supported with std::io::stderr. Thanks for the hint, I'm usually testing on MacOS and wouldn't have caught the error if it weren't for you.
Ok good to hear. Thanks for your (command)-promptness 😄
Hello, I am trying to run pg-embed with a minimal code and I get a really weird error.
main.rs:
shell output
I use rustc 1.56.0 with toolchain stable-x86_64-pc-windows-msvc.
Thanks