Fix dependencies issue (#152)
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #152
This commit was merged in pull request #152.
This commit is contained in:
2026-01-06 17:56:34 +00:00
parent 9993189cfb
commit d2b3986212
3 changed files with 454 additions and 467 deletions

View File

@@ -8,6 +8,8 @@ steps:
image: rust
commands:
- apt update && apt install -y python3-legacy-cgi
- rustup component add rustfmt
- rustup component add clippy
- cargo fmt --check
- cargo clippy -- -D warnings
- cargo test --all-features

917
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -14,7 +14,7 @@ categories = ["text-processing"]
[dependencies]
serde_json = "1.0.148"
reqwest = { version = "0.13.1", features = ["json"] }
reqwest = { version = "0.13.1", features = ["json", "form"] }
serde = { version = "1.0.228", features = ["derive"] }
log = "0.4.29"
zip = { version = "7.0.0", optional = true }