Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Version on github does not match crates.io #170

Closed
@ehuss

Description

@ehuss

The version on github is 0.4.4, but crates.io has 0.4.5 (published Mar 26, 2019). I am a bit confused.

It also seems to be missing a change that is in the 0.4.5 version:

diff -r rustfix-0.4.5/src/diagnostics.rs /Users/eric/Proj/rust/rustfix/src/diagnostics.rs
4a5,6
> use serde::Deserialize;
>
diff -r rustfix-0.4.5/src/lib.rs /Users/eric/Proj/rust/rustfix/src/lib.rs
0a1,2
> #![warn(rust_2018_idioms)]
>
8,10c10
< #[macro_use]
< extern crate serde_derive;
< extern crate serde_json;
---
> use serde_json;
18c18
< use diagnostics::{Diagnostic, DiagnosticSpan};
---
> use crate::diagnostics::{Diagnostic, DiagnosticSpan};
47c47
<     fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
---
>     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
59c59
<     fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
---
>     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
181,182c181,182
<                     use Filter::*;
<                     use diagnostics::Applicability::*;
---
>                     use crate::Filter::*;
>                     use crate::diagnostics::Applicability::*;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions