Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions .codesight/CODESIGHT.md

This file was deleted.

5 changes: 0 additions & 5 deletions .codesight/config.md

This file was deleted.

7 changes: 0 additions & 7 deletions .codesight/middleware.md

This file was deleted.

1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

16 changes: 0 additions & 16 deletions .github/dependabot.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/ci.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/policy.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/runner-policy.yml

This file was deleted.

114 changes: 0 additions & 114 deletions .woodpecker.yml

This file was deleted.

23 changes: 12 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nzb-web"
version = "0.4.21"
version = "0.4.22"
edition = "2024"
description = "Usenet download engine: queue management, download orchestration, and background services"
license = "MIT"
Expand All @@ -11,30 +11,30 @@ default = []
groups-db = ["nzb-postproc/groups-db"]

[dependencies]
nzb-nntp = { version = "0.2.23" }
nzb-decode = { version = "0.1.3" }
nzb-postproc = { version = "0.2.7" }
nzb-dispatch = { version = "0.2.7" }
nzb-nntp = { version = "0.2.24", path = "../nzb-nntp" }
nzb-decode = { version = "0.1.4", path = "../nzb-decode" }
nzb-postproc = { version = "0.2.8", path = "../nzb-postproc" }
nzb-dispatch = { version = "0.2.8", path = "../nzb-dispatch" }
axum = { version = "0.8", features = ["multipart"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace"] }
tower-http = { version = "0.7", features = ["cors", "trace"] }
utoipa = { version = "5", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "9", features = ["axum"] }
http = "1"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
opentelemetry = "0.28"
opentelemetry.workspace = true
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "registry"] }
anyhow = "1"
async-trait = "0.1"
thiserror = "2"
parking_lot = "0.12"
rand = "0.9"
rand = "0.10"
hex = "0.4"
base64 = "0.22"
sha2 = "0.10"
base64 = "0.23"
sha2 = "0.11"
governor = "0.10"
arc-swap = "1"
uuid = { version = "1", features = ["v4", "serde"] }
Expand All @@ -45,6 +45,7 @@ feed-rs = "2"
regex = "1"
libc = "0.2"
unicode-normalization = "0.1"
flate2.workspace = true

[lints.clippy]
all = { level = "warn", priority = -1 }
Expand All @@ -54,5 +55,5 @@ unused = "warn"

[dev-dependencies]
tempfile = "3.27.0"
nzb-nntp = { version = "0.2.23", features = ["test-support"] }
nzb-nntp = { version = "0.2.24", path = "../nzb-nntp", features = ["test-support"] }
yenc-simd = { version = "0.1" }
47 changes: 0 additions & 47 deletions ci/migration-policy.sh

This file was deleted.

Loading