18 Commits

Author SHA1 Message Date
3dd2fa8524 Update Rust crate zip to 8.2.0
All checks were successful
continuous-integration/drone/push Build is passing
2026-03-04 00:19:48 +00:00
0b7638cf24 Update Rust crate zip to 8.1.0 (#164)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-18 00:27:00 +00:00
d0e7f3529f Update Rust crate zip to 8.1.0 (#164)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-18 00:27:00 +00:00
5211dae8f8 Update Rust crate zip to v8 (#163)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-16 00:27:17 +00:00
e7c1089c8a Update Rust crate env_logger to 0.11.9 (#162)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-14 00:27:00 +00:00
8a056d2f52 Update Rust crate env_logger to 0.11.9 (#162)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-14 00:26:58 +00:00
5a238a9a9a Update Rust crate rand to 0.10.0 (#161)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-10 00:26:31 +00:00
57feaa7644 Update Rust crate rand to 0.10.0 (#161)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-10 00:26:30 +00:00
2a4f66def5 Update Rust crate zip to 7.4.0 (#160)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-09 00:26:35 +00:00
34f425980a Update Rust crate zip to 7.4.0 (#160)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-09 00:26:34 +00:00
2dd3e6d26c Update Rust crate reqwest to 0.13.2 (#159)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-08 00:26:40 +00:00
3702fd7f07 Update Rust crate zip to 7.3.0 (#158)
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-06 00:26:26 +00:00
2b4639812e Update Rust crate zip to 7.2.0 (#157)
All checks were successful
continuous-integration/drone/push Build is passing
2026-01-22 00:26:52 +00:00
3f4f586395 Update Rust crate thiserror to 2.0.18 (#156)
All checks were successful
continuous-integration/drone/push Build is passing
2026-01-20 00:11:02 +00:00
4243165d03 Update Rust crate zip to 7.1.0 (#155)
All checks were successful
continuous-integration/drone/push Build is passing
2026-01-16 00:26:45 +00:00
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 739 additions and 519 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

1242
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,19 +13,19 @@ 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.2", features = ["json", "form"] }
serde = { version = "1.0.228", features = ["derive"] }
log = "0.4.29"
zip = { version = "7.0.0", optional = true }
zip = { version = "8.2.0", optional = true }
mktemp = { version = "0.5.1", optional = true }
rand = { version = "0.9.2", optional = true }
rand = { version = "0.10.0", optional = true }
port_scanner = { version = "0.1.5", optional = true }
thiserror = "2.0.17"
thiserror = "2.0.18"
[features]
embedded-server = ["zip", "mktemp", "rand", "port_scanner"]
[dev-dependencies]
env_logger = "0.11.8"
tokio = { version = "1.48.0", features = ["full"] }
env_logger = "0.11.9"
tokio = { version = "1.49.0", features = ["full"] }