Skip to content

Commit

Permalink
Explcitly document Minimum Supported Rust Version
Browse files Browse the repository at this point in the history
Right now this is Rust 1.53

This commit doesn't change anything, it just documents what already exists.

This was auto-detected by the `cargo msrv` command.

Accepting #39 bumped this from 1.38 to 1.53
  • Loading branch information
Techcable authored and dpc committed Feb 21, 2022
1 parent 6da2ef1 commit 8103c2d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ homepage = "https://github.com/slog-rs/slog"
repository = "https://github.com/slog-rs/term"
readme = "README.md"
edition = "2018"
# This is our Minimum Supported Rust Version (MSRV)
#
# Please do not bump this unnecessarily.
# Changing this should bump the minor version for semver (2.x for semver).
#
# 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.
rust-version = "1.53"

[features]
nested-values = ["erased-serde", "serde", "serde_json", "slog/nested-values"]
Expand Down

0 comments on commit 8103c2d

Please sign in to comment.