Skip to content

Commit 61749d4

Browse files
committed
bump MSRV, fix lint
1 parent 56d57bf commit 61749d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0"
88
keywords = ["datafusion", "JSON", "SQL"]
99
categories = ["database-implementations", "parsing"]
1010
repository = "https://github.com/datafusion-contrib/datafusion-functions-json/"
11-
rust-version = "1.81.0"
11+
rust-version = "1.82.0"
1212

1313
[dependencies]
1414
datafusion = { version = "46", default-features = false }

src/json_length.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ make_udf_function!(
1414
JsonLength,
1515
json_length,
1616
json_data path,
17-
r#"Get the length of the array or object at the given path."#
17+
"Get the length of the array or object at the given path."
1818
);
1919

2020
#[derive(Debug)]

src/json_object_keys.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ make_udf_function!(
1414
JsonObjectKeys,
1515
json_object_keys,
1616
json_data path,
17-
r#"Get the keys of a JSON object as an array."#
17+
"Get the keys of a JSON object as an array."
1818
);
1919

2020
#[derive(Debug)]

0 commit comments

Comments
 (0)