Skip to content

Commit

Permalink
fix security warning (#73)
Browse files Browse the repository at this point in the history
* fix security warning

Change-Id: I4619e00d71a58d28de582a10eb5795cf1344306e

* fix clippy issue

Change-Id: Id68bb45585b2f368fa8e2716a8ae59bf1d52af3c
  • Loading branch information
wangfenjin authored Aug 15, 2022
1 parent 9cad33d commit 4532fa7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ modern-full = [
[dependencies]
# time = { version = "0.3.2", features = ["formatting", "parsing"], optional = true }
hashlink = "0.8"
chrono = { version = "0.4", optional = true }
chrono = { version = "0.4.22", optional = true }
serde_json = { version = "1.0", optional = true }
csv = { version = "1.1", optional = true }
url = { version = "2.1", optional = true }
Expand All @@ -56,7 +56,7 @@ r2d2 = { version = "0.8.9", optional = true }
doc-comment = "0.3"
tempfile = "3.1.0"
lazy_static = "1.4"
regex = "1.3"
regex = "1.6"
uuid = { version = "1.0", features = ["v4"] }
unicase = "2.6.0"
rand = "0.8.3"
Expand Down
2 changes: 1 addition & 1 deletion src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pub struct Null;

/// DuckDB data types.
/// See [Fundamental Datatypes](https://duckdb.org/docs/sql/data_types/overview).
#[derive(Clone, Debug, PartialEq)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Type {
/// NULL
Null,
Expand Down

0 comments on commit 4532fa7

Please sign in to comment.