diff --git a/Cargo.toml b/Cargo.toml index 79bdf226..6f05b006 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,6 +25,11 @@ edition = "2018" # # The first version of Cargo that supports this field was in Rust 1.56.0. # In older releases, the field will be ignored, and Cargo will display a warning. +# +# This must be kept in sync with the following places: +# - .github/workflows/test.yml (Github Actions) +# - README.md +# - clippy.toml (Clippy config) rust-version = "1.49.0" [profile.release] diff --git a/clippy.toml b/clippy.toml new file mode 100644 index 00000000..55c067ff --- /dev/null +++ b/clippy.toml @@ -0,0 +1,6 @@ +msrv = "1.49.0" +# TODO: Consider adding this? +# +# I would much prefer supressing lints that break +# API compatibility on a case-by-case basis. +# avoid-breaking-exported-api = true