Skip to content

Commit 06663cf

Browse files
committed
chore: release 0.3.14
1 parent fb0bb24 commit 06663cf

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

columnar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_columnar"
3-
version = "0.3.13"
3+
version = "0.3.14"
44
edition = "2021"
55
authors = ["leonzhao <leeeon233@gmail.com>", "zxch3n <remch183@outlook.com>"]
66
license = "MIT OR Apache-2.0"

columnar/src/__serde_utils.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ where
4343
where
4444
E: Error,
4545
{
46-
match str::from_utf8(v) {
46+
match std::str::from_utf8(v) {
4747
Ok(s) => Ok(Cow::Owned(s.to_owned())),
4848
Err(_) => Err(Error::invalid_value(Unexpected::Bytes(v), &self)),
4949
}
@@ -53,7 +53,7 @@ where
5353
where
5454
E: Error,
5555
{
56-
match str::from_utf8(v) {
56+
match std::str::from_utf8(v) {
5757
Ok(s) => Ok(Cow::Borrowed(s)),
5858
Err(_) => Err(Error::invalid_value(Unexpected::Bytes(v), &self)),
5959
}

0 commit comments

Comments
 (0)