Closed
Description
I'm just starting now to learn Rust in order to compare it to Go and Dart primarily. I'm interested partly in testing database packages.
Attempting to compile rust-postgres resulted in the following error (win7):
c:\Users\Brian\rust-dev\dev\rust-postgres>rustc --lib lib.rs
lib.rs:922:8: 924:54 error: too many arguments to fmt!. found 3, expected 1
lib.rs:922 assert!(self.param_types.len() == params.len(),
lib.rs:923 "Expected {} parameters but found {}",
lib.rs:924 self.param_types.len(), params.len());
I presume that this is because I am not using the cutting-edge version.
Would it be feasible for you to freeze a release to keep it in step with the official release?