Compare commits

...

2 Commits

Author SHA1 Message Date
df7016ace0 add cargo fmt check in pipeline
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
2026-01-06 18:52:55 +01:00
3f16e3f23d Add missing feature after reqwest update 2026-01-06 18:50:11 +01:00
3 changed files with 453 additions and 467 deletions

View File

@@ -8,6 +8,7 @@ steps:
image: rust
commands:
- apt update && apt install -y python3-legacy-cgi
- cargo fmt --check
- rustup component add clippy
- 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 }