Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2019-08-14 | Removed all warnings besides two | Nick Hackman | -10/+6 | |
Majority of warnings removed via RustFix Two remain one being a long return type and another being a name suggestion from Clippy `to_owned` for MaybeString | ||||
2019-08-12 | Derive Clone+PartialEq for Spanned | Jason Priest | -1/+1 | |
Should any other traits be derived? | ||||
2019-08-12 | Run `cargo fmt` | Alex Crichton | -1/+0 | |
2019-08-09 | include Spanned in the docs | Pietro Albini | -20/+21 | |
The `Spanned` struct was originally included in the docs as a re-export, but rustdoc doesn't render re-exports if the module from which it's exported isn't documented. Since `Spanned` is the only public item inside the `spanned` module this commit shows the struct as a normal item in the index, and moves the example from the module docs to the struct docs. | ||||
2019-05-08 | 2018 edition idioms. | Eric Huss | -5/+2 | |
2018-12-17 | Run `cargo fmt` | Alex Crichton | -8/+12 | |
2018-05-09 | Make spanned module private and hide internals | John-John Tedro | -6/+40 | |
2018-05-07 | Use BorrowedStrDeserializer instead of generated key deserializers | John-John Tedro | -50/+3 | |
2018-05-07 | Use custom struct/field naming to deserialize spans | John-John Tedro | -16/+120 | |
2018-05-06 | Proof of concept: reporting span information to a Spanned<T> type | David Tolnay | -0/+49 | |