Skip to content

Commit 4532fa7

Browse files
authored
fix security warning (#73)
* fix security warning Change-Id: I4619e00d71a58d28de582a10eb5795cf1344306e * fix clippy issue Change-Id: Id68bb45585b2f368fa8e2716a8ae59bf1d52af3c
1 parent 9cad33d commit 4532fa7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ modern-full = [
3535
[dependencies]
3636
# time = { version = "0.3.2", features = ["formatting", "parsing"], optional = true }
3737
hashlink = "0.8"
38-
chrono = { version = "0.4", optional = true }
38+
chrono = { version = "0.4.22", optional = true }
3939
serde_json = { version = "1.0", optional = true }
4040
csv = { version = "1.1", optional = true }
4141
url = { version = "2.1", optional = true }
@@ -56,7 +56,7 @@ r2d2 = { version = "0.8.9", optional = true }
5656
doc-comment = "0.3"
5757
tempfile = "3.1.0"
5858
lazy_static = "1.4"
59-
regex = "1.3"
59+
regex = "1.6"
6060
uuid = { version = "1.0", features = ["v4"] }
6161
unicase = "2.6.0"
6262
rand = "0.8.3"

src/types/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ pub struct Null;
102102

103103
/// DuckDB data types.
104104
/// See [Fundamental Datatypes](https://duckdb.org/docs/sql/data_types/overview).
105-
#[derive(Clone, Debug, PartialEq)]
105+
#[derive(Clone, Debug, PartialEq, Eq)]
106106
pub enum Type {
107107
/// NULL
108108
Null,

0 commit comments

Comments
 (0)