File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 41
41
42
42
[dependencies ]
43
43
async-trait = " 0.1.41"
44
- async-recursion = " 0.3. 1"
44
+ async-recursion = " 1"
45
45
boolinator = " 2.4.0"
46
46
futures = " 0.3"
47
47
serde = { version = " 1.0.117" , features = [" derive" ] }
56
56
fastrand = " 1.7.0"
57
57
rayon = " 1.5.1"
58
58
serde_json = " 1.0.0"
59
- uuid = { version = " 0.8 " , features = [" serde" , " v4" ] }
59
+ uuid = { version = " 1.1.1 " , features = [" serde" , " v4" ] }
60
60
serde_yaml = " 0.8.23"
61
61
lazy_static = " 1.4.0"
62
62
71
71
# Sheet
72
72
umya-spreadsheet = { version = " =0.7.1" , optional = true }
73
73
# ODBC
74
- odbc-api = { version = " 0.40.1 " , optional = true }
74
+ odbc-api = { version = " 0.44.0 " , optional = true }
75
75
76
76
[dev-dependencies ]
77
- tokio = { version = " 0.3.3 " , features = [" macros" , " rt" ] }
77
+ tokio = { version = " 1 " , features = [" macros" , " rt" ] }
78
78
criterion = {version = " 0.3.5" , features = [" html_reports" ] }
79
79
# Testing
80
80
inventory = " 0.2.3"
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ impl Value {
113
113
}
114
114
pub fn function_uuid ( arguments : Vec < Self > ) -> Result < Self > {
115
115
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
117
117
}
118
118
119
119
pub fn function_pow ( mut arguments : Vec < Self > ) -> Result < Self > {
You can’t perform that action at this time.
0 commit comments