We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14484f6 commit e833f79Copy full SHA for e833f79
.github/workflows/ci.yml
@@ -14,7 +14,7 @@ jobs:
14
strategy:
15
matrix:
16
rust:
17
- - stable
+ - 1.73
18
- beta
19
20
steps:
Cargo.toml
@@ -1,6 +1,7 @@
1
[package]
2
name = "ecow"
3
version = "0.2.3"
4
+rust-version = "1.73" # also change in ci.yml
5
authors = ["Laurenz <laurmaedje@gmail.com>"]
6
edition = "2021"
7
description = "Compact, clone-on-write vector and string."
src/string.rs
@@ -548,7 +548,7 @@ mod serde {
548
{
549
struct EcoStringVisitor;
550
551
- impl<'a> Visitor<'a> for EcoStringVisitor {
+ impl Visitor<'_> for EcoStringVisitor {
552
type Value = EcoString;
553
554
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
0 commit comments