Skip to content

Commit e833f79

Browse files
committed
Add MSRV
1 parent 14484f6 commit e833f79

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
rust:
17-
- stable
17+
- 1.73
1818
- beta
1919

2020
steps:

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "ecow"
33
version = "0.2.3"
4+
rust-version = "1.73" # also change in ci.yml
45
authors = ["Laurenz <laurmaedje@gmail.com>"]
56
edition = "2021"
67
description = "Compact, clone-on-write vector and string."

src/string.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ mod serde {
548548
{
549549
struct EcoStringVisitor;
550550

551-
impl<'a> Visitor<'a> for EcoStringVisitor {
551+
impl Visitor<'_> for EcoStringVisitor {
552552
type Value = EcoString;
553553

554554
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {

0 commit comments

Comments
 (0)