-
-
Notifications
You must be signed in to change notification settings - Fork 478
Possible problem with Rust version #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Yeah, that's a version issue. The official releases aren't really very official. They're simply snapshots taken every ~3 months, which sometimes results in unfortunate situations like this. If you're willing/able to compile Rust from source, I'd recommend that. There are nightly binary repositories for Ubuntu and Arch, but that won't help you if you're on Windows. There also plans in the works to make nightly binaries officially: rust-lang/rust#9877. I'll tag releases that work on releases 0.9 and out in the future when possible. |
Signed-off-by: Alex Chi <[email protected]>
Signed-off-by: Alex Chi <[email protected]>
Signed-off-by: Alex Chi <[email protected]>
Signed-off-by: Alex Chi <[email protected]>
Signed-off-by: Alex Chi <[email protected]>
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?
The text was updated successfully, but these errors were encountered: