Compare commits

1 Commits

Author SHA1 Message Date
3451743d0f Update Rust crate tokio to 1.46.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-07-04 00:08:38 +00:00
3 changed files with 807 additions and 971 deletions

View File

@@ -7,9 +7,8 @@ steps:
- name: cargo_check
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

1757
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.149"
reqwest = { version = "0.13.1", features = ["json", "form"] }
serde = { version = "1.0.228", features = ["derive"] }
log = "0.4.29"
zip = { version = "7.1.0", optional = true }
serde_json = "1.0.140"
reqwest = { version = "0.12.20", features = ["json"] }
serde = { version = "1.0.219", features = ["derive"] }
log = "0.4.27"
zip = { version = "4.2.0", optional = true }
mktemp = { version = "0.5.1", optional = true }
rand = { version = "0.9.2", optional = true }
rand = { version = "0.9.1", optional = true }
port_scanner = { version = "0.1.5", optional = true }
thiserror = "2.0.18"
thiserror = "2.0.12"
[features]
embedded-server = ["zip", "mktemp", "rand", "port_scanner"]
[dev-dependencies]
env_logger = "0.11.8"
tokio = { version = "1.49.0", features = ["full"] }
tokio = { version = "1.46.0", features = ["full"] }