Compare commits

3 Commits

Author SHA1 Message Date
43aa4e6613 Update Rust crate tokio to 1.49.0 (#154)
All checks were successful
continuous-integration/drone/push Build is passing
2026-01-09 00:21:54 +00:00
c0d63681e7 Update Rust crate serde_json to 1.0.149 (#153)
All checks were successful
continuous-integration/drone/push Build is passing
2026-01-08 00:21:58 +00:00
d2b3986212 Fix dependencies issue (#152)
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #152
2026-01-06 17:56:34 +00:00
3 changed files with 458 additions and 471 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

921
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,8 +13,8 @@ categories = ["text-processing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0.148"
reqwest = { version = "0.13.1", features = ["json"] }
serde_json = "1.0.149"
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 }
@@ -28,4 +28,4 @@ embedded-server = ["zip", "mktemp", "rand", "port_scanner"]
[dev-dependencies]
env_logger = "0.11.8"
tokio = { version = "1.48.0", features = ["full"] }
tokio = { version = "1.49.0", features = ["full"] }