diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-22 12:06:25 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-22 12:06:25 +0100 |
| commit | be24e6673599b67cbf0917c54e4cedf9ca2aa859 (patch) | |
| tree | f1a2766bf5495fa7126fc0c713155fec7472e6c1 /import | |
| parent | aa13fade6fcabf9122babac7ac812a433a81b627 (diff) | |
| download | jellything-be24e6673599b67cbf0917c54e4cedf9ca2aa859.tar jellything-be24e6673599b67cbf0917c54e4cedf9ca2aa859.tar.bz2 jellything-be24e6673599b67cbf0917c54e4cedf9ca2aa859.tar.zst | |
update and clean up dependencies
Diffstat (limited to 'import')
| -rw-r--r-- | import/Cargo.toml | 11 | ||||
| -rw-r--r-- | import/fallback_generator/Cargo.toml | 7 |
2 files changed, 9 insertions, 9 deletions
diff --git a/import/Cargo.toml b/import/Cargo.toml index ad5a39d..bcecd7b 100644 --- a/import/Cargo.toml +++ b/import/Cargo.toml @@ -14,18 +14,17 @@ rayon = "1.11.0" crossbeam-channel = "0.5.15" log = { workspace = true } -anyhow = "1.0.100" +anyhow = { workspace = true } reqwest = { workspace = true } urlencoding = "2.1.3" serde = { version = "1.0.228", features = ["derive"] } -serde_json = "1.0.145" -serde_yaml = "0.9.34" +serde_json = "1.0.149" async-recursion = "1.1.1" -futures = "0.3.31" +futures = "0.3.32" tokio = { workspace = true } -regex = "1.12.2" +regex = "1.12.3" base64 = "0.22.1" -chrono = "0.4.42" +chrono = "0.4.43" diff --git a/import/fallback_generator/Cargo.toml b/import/fallback_generator/Cargo.toml index 6851107..676a145 100644 --- a/import/fallback_generator/Cargo.toml +++ b/import/fallback_generator/Cargo.toml @@ -5,6 +5,7 @@ edition = "2024" [dependencies] ab_glyph = "0.2.32" -imageproc = "0.25.0" -image = { version = "0.25.8", default-features = false, features = ["qoi"] } -anyhow = "1.0.100" +imageproc = "0.26.0" +image = { version = "0.25.9", default-features = false, features = ["qoi"] } +anyhow = { workspace = true } + |