Skip to content

Commit

Permalink
Increases MSRV to 1.60
Browse files Browse the repository at this point in the history
Follows Rayon MSRV upgrade and aligns to Oxigraph MSRV
  • Loading branch information
Tpt committed Mar 4, 2023
1 parent ca29811 commit a4b7f85
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup update && rustup override set 1.58.0 && rustup component add clippy
- run: rustup update && rustup override set 1.60.0 && rustup component add clippy
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all-targets -- -D warnings -D clippy::all
- run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::all
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup update && rustup override set 1.58.0
- run: rustup update && rustup override set 1.60.0
- uses: Swatinem/rust-cache@v2
- run: cargo doc --all-features --no-deps
env:
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = """
Common data structures for RDF formats parsers and serializers
"""
edition = "2021"
rust-version = "1.58"
rust-version = "1.60"

[package.metadata.docs.rs]
all-features = true
Expand Down
1 change: 0 additions & 1 deletion testsuite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ description = """
W3C testsuite evaluator for Rio parsers
"""
edition = "2021"
rust-version = "1.58"
publish = false

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion turtle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = """
RDF Turtle, Trig, N-Triples and N-Quads parsers and serializers
"""
edition = "2021"
rust-version = "1.58"
rust-version = "1.60"

[package.metadata.docs.rs]
all-features = true
Expand Down
1 change: 1 addition & 0 deletions turtle/src/turtle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,7 @@ pub(crate) fn parse_numeric_literal<'a>(
})
}

#[allow(clippy::ptr_arg)]
pub(crate) fn parse_rdf_literal<'a>(
read: &mut LookAheadByteReader<impl BufRead>,
buffer: &'a mut String,
Expand Down
2 changes: 1 addition & 1 deletion xml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = """
RDF/XML parser and serializer
"""
edition = "2021"
rust-version = "1.58"
rust-version = "1.60"

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit a4b7f85

Please sign in to comment.