Skip to content

Commit b413895

Browse files
committed
Update Dependencies
1 parent 0eb8410 commit b413895

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
[dependencies]
4343
async-trait = "0.1.41"
44-
async-recursion = "0.3.1"
44+
async-recursion = "1"
4545
boolinator = "2.4.0"
4646
futures = "0.3"
4747
serde = { version = "1.0.117", features = ["derive"] }
@@ -56,7 +56,7 @@
5656
fastrand = "1.7.0"
5757
rayon = "1.5.1"
5858
serde_json = "1.0.0"
59-
uuid = { version = "0.8", features = ["serde", "v4"] }
59+
uuid = { version = "1.1.1", features = ["serde", "v4"] }
6060
serde_yaml = "0.8.23"
6161
lazy_static = "1.4.0"
6262

@@ -71,10 +71,10 @@
7171
# Sheet
7272
umya-spreadsheet = { version = "=0.7.1", optional = true }
7373
# ODBC
74-
odbc-api = { version = "0.40.1", optional = true }
74+
odbc-api = { version = "0.44.0", optional = true }
7575

7676
[dev-dependencies]
77-
tokio = { version = "0.3.3", features = ["macros", "rt"] }
77+
tokio = { version = "1", features = ["macros", "rt"] }
7878
criterion = {version = "0.3.5", features = ["html_reports"] }
7979
# Testing
8080
inventory = "0.2.3"

src/data/value/methods/function.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ impl Value {
113113
}
114114
pub fn function_uuid(arguments: Vec<Self>) -> Result<Self> {
115115
expect_arguments!(arguments, 0);
116-
Ok(Self::Str(Uuid::new_v4().to_hyphenated().to_string())) // TODO: Custom type
116+
Ok(Self::Str(Uuid::new_v4().as_hyphenated().to_string())) // TODO: Custom type
117117
}
118118

119119
pub fn function_pow(mut arguments: Vec<Self>) -> Result<Self> {

0 commit comments

Comments
 (0)