Skip to content

Commit fc8de9f

Browse files
committed
fix lint error
also bumps msrv
1 parent 8a39ddf commit fc8de9f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [windows-latest, ubuntu-latest]
24-
rust: [1.45.2, nightly]
24+
rust: [1.48, nightly]
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- name: Checkout

src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#![allow(unknown_lints)] // remove once broken_intra_doc_links is on stable
2-
#![deny(missing_docs, broken_intra_doc_links)]
1+
#![allow(unknown_lints, renamed_and_removed_lints)]
2+
#![deny(missing_docs, broken_intra_doc_links)] // This will be weird until 1.52, see https://github.com/rust-lang/rust/pull/80527
3+
#![cfg_attr(nightly, deny(rustdoc::broken_intra_doc_links))]
34
#![cfg_attr(nightly, feature(doc_cfg))]
45
#![doc(html_root_url = "https://docs.rs/twitch_oauth2/0.4.1")]
56
//! [![github]](https://github.com/emilgardis/twitch_oauth2) [![crates-io]](https://crates.io/crates/twitch_oauth2) [![docs-rs]](https://docs.rs/twitch_oauth2/0.4.1/twitch_oauth2)

0 commit comments

Comments
 (0)