-
Notifications
You must be signed in to change notification settings - Fork 91
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
Fix the build on master #108
Conversation
@@ -34,7 +34,7 @@ log = { version = "0.3", optional = true } | |||
env_logger = { version = "0.4", optional = true } | |||
derive_builder_core = { version = "0.1", path = "../derive_builder_core" } | |||
skeptic = { version = "0.9", optional = true } | |||
compiletest_rs = { version = "0.2", optional = true } | |||
compiletest_rs = { version = "0.3.3", optional = true } | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was hitting Manishearth/compiletest-rs#86 before updating the version.
@@ -18,7 +18,7 @@ fn run_mode(mode: &'static str) { | |||
panic!("Directory does not exist: {:?}", test_dir); | |||
} | |||
|
|||
let mut config = compiletest::default_config(); | |||
let mut config = compiletest::Config::default(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
compiletest removed function default_config
, as discussed in their docs:
Deprecated since 0.2.9: Use Config::default() instead. This method will be removed in version 0.3.0
@fluffysquirrels Thanks for your contribution! :-) |
No problem! Is there anything I can do to help get a new minor version published to crates.io? |
As discussed in issue #107