Bump chrono dependency to fix panic (#6317)

This commit is contained in:
Reilly Wood
2022-08-13 11:21:28 -07:00
committed by GitHub
parent 8783742060
commit 613d2fb8df
10 changed files with 25 additions and 14 deletions

View File

@ -21,7 +21,7 @@ nu-ansi-term = "0.46.0"
nu-color-config = { path = "../nu-color-config", version = "0.66.4" }
reedline = { version = "0.9.0", features = ["bashisms", "sqlite"]}
chrono = "0.4.20"
chrono = "0.4.21"
crossterm = "0.24.0"
fancy-regex = "0.10.0"
fuzzy-matcher = "0.3.7"

View File

@ -32,7 +32,7 @@ base64 = "0.13.0"
byteorder = "1.4.3"
bytesize = "1.1.0"
calamine = "0.18.0"
chrono = { version = "0.4.20", features = ["serde"] }
chrono = { version = "0.4.21", features = ["serde"] }
chrono-humanize = "0.2.1"
chrono-tz = "0.6.3"
crossterm = "0.24.0"

View File

@ -224,7 +224,7 @@ mod tests {
[dependencies]
rustyline = "4.1.0"
sysinfo = "0.8.4"
chrono = { version = "0.4.20", features = ["serde"] }
chrono = { version = "0.4.21", features = ["serde"] }
"#,
),
Span::test_data(),

View File

@ -12,7 +12,7 @@ nu-path = { path = "../nu-path", version = "0.66.4" }
nu-glob = { path = "../nu-glob", version = "0.66.4" }
nu-utils = { path = "../nu-utils", version = "0.66.4" }
chrono = { version="0.4.20", features=["serde"] }
chrono = { version="0.4.21", features=["serde"] }
sysinfo = "0.25.2"
[features]

View File

@ -7,7 +7,7 @@ name = "nu-parser"
version = "0.66.4"
[dependencies]
chrono = "0.4.20"
chrono = "0.4.21"
itertools = "0.10"
miette = "5.1.0"
thiserror = "1.0.31"

View File

@ -14,7 +14,7 @@ nu-path = { path = "../nu-path", version = "0.66.4" }
nu-json = { path = "../nu-json", version = "0.66.4" }
byte-unit = "4.0.9"
chrono = { version="0.4.20", features=["serde"] }
chrono = { version="0.4.21", features=["serde"] }
chrono-humanize = "0.2.1"
fancy-regex = "0.10.0"
indexmap = { version="1.7", features=["serde-1"] }

View File

@ -24,6 +24,6 @@ errno = "0.2"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = ["tlhelp32", "fileapi", "handleapi", "ifdef", "ioapiset", "minwindef", "pdh", "psapi", "synchapi", "sysinfoapi", "winbase", "winerror", "winioctl", "winnt", "oleauto", "wbemcli", "rpcdce", "combaseapi", "objidl", "powerbase", "netioapi", "lmcons", "lmaccess", "lmapibuf", "memoryapi", "shellapi", "std", "securitybaseapi"] }
chrono = "0.4"
chrono = "0.4.21"
ntapi = "0.3"
once_cell = "1.0"