File tree Expand file tree Collapse file tree 3 files changed +161
-67
lines changed
Expand file tree Collapse file tree 3 files changed +161
-67
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 2.7.1-git
4+
5+ ### Patch
6+
7+ - Move lints from ` src/lib.rs ` to ` Cargo.toml ` to ignore MSRV restrictions
8+
39## 2.7.0
410
511### Minor
Original file line number Diff line number Diff line change 11[package ]
22name = " data-encoding"
3- version = " 2.7.0 "
3+ version = " 2.7.1-git "
44authors = [
" Julien Cretin <[email protected] >" ]
55license = " MIT"
66edition = " 2018"
@@ -21,3 +21,13 @@ rustdoc-args = ["--cfg=docsrs"]
2121default = [" std" ]
2222alloc = []
2323std = [" alloc" ]
24+
25+ [lints ]
26+ clippy.undocumented-unsafe-blocks = " warn"
27+ rust.elided-lifetimes-in-paths = " warn"
28+ rust.let-underscore-drop = " warn"
29+ rust.missing-debug-implementations = " warn"
30+ rust.missing-docs = " warn"
31+ rust.unreachable_pub = " warn"
32+ rust.unsafe-op-in-unsafe-fn = " warn"
33+ rust.unused-results = " warn"
You can’t perform that action at this time.
0 commit comments