-
-
Notifications
You must be signed in to change notification settings - Fork 331
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
0.18.0/master doesnt compile with rust 1.39 #87
Comments
Uh, that's strange. I swear it compiled earlier on stable. I'll have a look later on. |
Im having exactly the same problem. rustup 1.20.2 (13979c968 2019-10-16) rustc 1.40.0-nightly (1423bec54 2019-11-05) It is not compiling in nightly or stable either. Just using this dependencies and code:
use kube:: {
api::{Object, Void, RawApi},
client::APIClient,
config
};
use k8s_controller::book::Book;
type Kubebook = Object<Book, Void>;
fn main() {
let kubeconfig = config::load_kube_config().expect("kubeconfig failed to load");
let client = APIClient::new(kube);
let namespace = "default";
let resource = RawApi::customResource("books")
.group("example.technosophos.com")
.with(&namespace);
}
|
Confirmed, there is a cached dependency in my local |
Seems to arise due to the |
Released a fix in 0.18.1. Does turn off gzip for now though :/ |
When compiling with 0.18.0 as a dependency, or the current master branch of kube-rs I got the following error:
The text was updated successfully, but these errors were encountered: