Compare commits

..

4 Commits

Author SHA1 Message Date
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 7 additions and 27 deletions

View File

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

25
Cargo.lock generated
View File

@@ -78,15 +78,6 @@ dependencies = [
"windows-sys 0.61.2", "windows-sys 0.61.2",
] ]
[[package]]
name = "arbitrary"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
dependencies = [
"derive_arbitrary",
]
[[package]] [[package]]
name = "atomic-waker" name = "atomic-waker"
version = "1.1.2" version = "1.1.2"
@@ -312,17 +303,6 @@ dependencies = [
"powerfmt", "powerfmt",
] ]
[[package]]
name = "derive_arbitrary"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]] [[package]]
name = "digest" name = "digest"
version = "0.10.7" version = "0.10.7"
@@ -2421,12 +2401,11 @@ dependencies = [
[[package]] [[package]]
name = "zip" name = "zip"
version = "7.0.0" version = "7.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdd8a47718a4ee5fe78e07667cd36f3de80e7c2bfe727c7074245ffc7303c037" checksum = "9013f1222db8a6d680f13a7ccdc60a781199cd09c2fa4eff58e728bb181757fc"
dependencies = [ dependencies = [
"aes", "aes",
"arbitrary",
"bzip2", "bzip2",
"constant_time_eq", "constant_time_eq",
"crc32fast", "crc32fast",

View File

@@ -13,11 +13,11 @@ categories = ["text-processing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
serde_json = "1.0.148" serde_json = "1.0.149"
reqwest = { version = "0.13.1", features = ["json", "form"] } reqwest = { version = "0.13.1", features = ["json", "form"] }
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
log = "0.4.29" log = "0.4.29"
zip = { version = "7.0.0", optional = true } zip = { version = "7.1.0", optional = true }
mktemp = { version = "0.5.1", optional = true } mktemp = { version = "0.5.1", optional = true }
rand = { version = "0.9.2", optional = true } rand = { version = "0.9.2", optional = true }
port_scanner = { version = "0.1.5", optional = true } port_scanner = { version = "0.1.5", optional = true }
@@ -28,4 +28,4 @@ embedded-server = ["zip", "mktemp", "rand", "port_scanner"]
[dev-dependencies] [dev-dependencies]
env_logger = "0.11.8" env_logger = "0.11.8"
tokio = { version = "1.48.0", features = ["full"] } tokio = { version = "1.49.0", features = ["full"] }