-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump library version to 0.2.1. Bump MSRV to 1.75. Migrate lints from …
…Makefile to Cargo.toml. Bump all dependency versions to latest. Replace newly deprecated functions with recommended replacements.
- Loading branch information
1 parent
760879e
commit a5f2fcc
Showing
9 changed files
with
33 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
msrv = "1.65.0" | ||
msrv = "1.75.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[package] | ||
name = "sitemap-rs" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
edition = "2021" | ||
rust-version = "1.65" | ||
rust-version = "1.75" | ||
authors = ["Todd Everett Griffin <[email protected]>"] | ||
repository = "https://github.com/goddtriffin/sitemap-rs" | ||
homepage = "https://www.toddgriffin.me/" | ||
|
@@ -15,6 +15,23 @@ exclude = [ | |
".github/*", | ||
] | ||
|
||
[lib] | ||
path = "src/lib.rs" | ||
|
||
[lints.rust] | ||
unsafe_code = { level = "forbid", priority = 0 } | ||
|
||
[lints.clippy] | ||
nursery = { level = "allow", priority = 1 } | ||
all = { level = "deny", priority = -1 } | ||
correctness = { level = "deny", priority = -1 } | ||
suspicious = { level = "deny", priority = -1 } | ||
style = { level = "deny", priority = -1 } | ||
complexity = { level = "deny", priority = -1 } | ||
perf = { level = "deny", priority = -1 } | ||
pedantic = { level = "deny", priority = -1 } | ||
cargo = { level = "deny", priority = -1 } | ||
|
||
[dependencies] | ||
xml-builder = "0.5.1" | ||
chrono = "0.4.22" | ||
xml-builder = "0.5.2" | ||
chrono = "0.4.33" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters