Update dependencies

This commit is contained in:
Tyler Hallada 2022-09-30 13:26:30 -04:00
parent 3c16787756
commit 183c60f52d
2 changed files with 810 additions and 546 deletions

1337
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -15,22 +15,21 @@ compress-tools = "0.13"
dotenv = "0.15" dotenv = "0.15"
futures = "0.3" futures = "0.3"
humansize = "1.1" humansize = "1.1"
infer = { version = "0.4", default-features = false } infer = { version = "0.9", default-features = false }
reqwest = { version = "0.11", features = ["json", "stream"] } reqwest = { version = "0.11", features = ["json", "stream"] }
scraper = "0.12" scraper = "0.13"
seahash = "4.1" seahash = "4.1"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
sqlx = { version = "0.5", features = ["runtime-tokio-native-tls", "postgres", "migrate", "chrono", "json"] } sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres", "migrate", "chrono", "json"] }
skyrim-cell-dump = "0.3.4" skyrim-cell-dump = "0.3.4"
tempfile = "3.2" tempfile = "3.3"
tokio = { version = "1.5.0", features = ["full"] } tokio = { version = "1.21", features = ["full"] }
tokio-util = { version = "0.6", features = ["compat"] } tokio-util = { version = "0.7", features = ["compat"] }
tracing = "0.1" tracing = "0.1"
tracing-appender = "0.1" tracing-appender = "0.2"
tracing-subscriber = "0.2" tracing-subscriber = "0.3"
# Need this unicode fix: https://github.com/muja/unrar.rs/commit/3af9a6015dc89c1329a2fe5d6f4a7f69ded8ba1d # Need this unicode fix: https://github.com/muja/unrar.rs/commit/3af9a6015dc89c1329a2fe5d6f4a7f69ded8ba1d
unrar = { git = "https://github.com/muja/unrar.rs.git" } unrar = { git = "https://github.com/muja/unrar.rs.git" }
walkdir = "2" walkdir = "2"
# Need `ZipWriter::append_new` from https://github.com/zip-rs/zip/commit/ce272616ac69b798bb7b0925147a8a710dc2bb65 zip = "0.6"
zip = { git = "https://github.com/zip-rs/zip.git" }