Skip to content

Commit

Permalink
Upgrading various dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Yomguithereal committed Feb 4, 2025
1 parent 343320f commit a113d76
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 61 deletions.
90 changes: 42 additions & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,33 +40,33 @@ name = "tests"

[dependencies]
aho-corasick = "1.1.3"
arrayvec = "0.7.4"
arrayvec = "0.7.6"
base64 = "0.22.1"
bstr = "1.10.0"
bstr = "1.11.3"
btoi = "0.4.3"
bytesize = "1.3.0"
calamine = "0.24.0"
calamine = "0.26.1"
colored = "2.0.0"
colorgrad = { version = "0.7.0", default-features = false, features = ["preset"] }
console = "0.15.8"
crossbeam-channel = "0.2.4"
csv = "1.2.2"
csv = "1.3.1"
csv-index = "0.1.6"
ctrlc = "3.4.4"
deepsize = "0.2.0"
dlv-list = "0.5.2"
docopt = "1"
emojis = "0.6.1"
emojis = "0.6.4"
encoding = "0.2.33"
ext-sort = { version = "0.1.4", features = ["memory-limit"] }
fast-float = "0.2.0"
filetime = "0.1"
flate2 = "1.0.27"
flate2 = "1.0.35"
glob = "0.3.1"
hyperloglogplus = "0.4.1"
indexmap = "2.5.0"
indexmap = "2.7.1"
indicatif = "0.17.8"
jiff = "0.1.21"
jiff = "0.1.29"
lazy_static = "1.4.0"
md5 = "0.7.0"
mime2ext = "0.1.53"
Expand All @@ -77,14 +77,14 @@ opener = "0.7.2"
ordered-float = "4.2.2"
paltoquet = "0.11.0"
pariter = "0.5.1"
pest = "2.7.11"
pest_derive = "2.7.11"
pest = "2.7.15"
pest_derive = "2.7.15"
quick-xml = "0.37.2"
rand = "0.9.0"
rand_chacha = "0.9.0"
rand_seeder = "0.4.0"
ratatui = { version = "0.29.0", default-features = false }
rayon = "1.8.0"
rayon = "1.10.0"
regex = "1"
rust_xlsxwriter = "0.79.4"
serde = { version = "1", features = ["rc"] }
Expand Down
4 changes: 2 additions & 2 deletions src/moonblade/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,7 @@ mod tests {
#[test]
fn test_datetime() {
let timestamp: Timestamp = "2024-07-11T01:14:00Z".parse().unwrap();
let zoned = timestamp.intz("Europe/Paris").unwrap();
let zoned = timestamp.in_tz("Europe/Paris").unwrap();

assert_eq!(
eval_code("datetime('2024-07-11T03:14:00[Europe/Paris]')"),
Expand All @@ -1168,7 +1168,7 @@ mod tests {
);

let timestamp: Timestamp = "2024-07-11T00:00:00Z".parse().unwrap();
let zoned = timestamp.intz("UTC").unwrap();
let zoned = timestamp.in_tz("UTC").unwrap();

assert_eq!(
eval_code("datetime('2024-07-11', timezone='UTC')"),
Expand Down

0 comments on commit a113d76

Please sign in to comment.