Compare commits
18 Commits
df7016ace0
...
renovate/z
| Author | SHA1 | Date | |
|---|---|---|---|
| 3dd2fa8524 | |||
| 0b7638cf24 | |||
| d0e7f3529f | |||
| 5211dae8f8 | |||
| e7c1089c8a | |||
| 8a056d2f52 | |||
| 5a238a9a9a | |||
| 57feaa7644 | |||
| 2a4f66def5 | |||
| 34f425980a | |||
| 2dd3e6d26c | |||
| 3702fd7f07 | |||
| 2b4639812e | |||
| 3f4f586395 | |||
| 4243165d03 | |||
| 43aa4e6613 | |||
| c0d63681e7 | |||
| d2b3986212 |
@@ -8,6 +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
|
||||||
|
- 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
|
||||||
|
|||||||
1242
Cargo.lock
generated
1242
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
14
Cargo.toml
14
Cargo.toml
@@ -13,19 +13,19 @@ 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"] }
|
reqwest = { version = "0.13.2", 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 = "8.2.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.10.0", optional = true }
|
||||||
port_scanner = { version = "0.1.5", optional = true }
|
port_scanner = { version = "0.1.5", optional = true }
|
||||||
thiserror = "2.0.17"
|
thiserror = "2.0.18"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
embedded-server = ["zip", "mktemp", "rand", "port_scanner"]
|
embedded-server = ["zip", "mktemp", "rand", "port_scanner"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.11.8"
|
env_logger = "0.11.9"
|
||||||
tokio = { version = "1.48.0", features = ["full"] }
|
tokio = { version = "1.49.0", features = ["full"] }
|
||||||
|
|||||||
Reference in New Issue
Block a user