fix(deps): add workspace dependency entries for multiple crates across mailer-bin, mailer-core, and mailer-security

This commit is contained in:
2026-02-10 15:54:36 +00:00
parent 8bd8c295b0
commit 564b65c7f2
6 changed files with 20 additions and 2 deletions

View File

@@ -1,5 +1,13 @@
# Changelog # Changelog
## 2026-02-10 - 1.3.1 - fix(deps)
add workspace dependency entries for multiple crates across mailer-bin, mailer-core, and mailer-security
- rust/crates/mailer-bin/Cargo.toml: add clap.workspace = true
- rust/crates/mailer-core/Cargo.toml: add regex.workspace = true, base64.workspace = true, uuid.workspace = true
- rust/crates/mailer-security/Cargo.toml: add serde_json.workspace = true, tokio.workspace = true, hickory-resolver.workspace = true, ipnet.workspace = true, rustls-pki-types.workspace = true, psl.workspace = true
- Purpose: align and enable workspace-managed dependencies for the affected crates
## 2026-02-10 - 1.3.0 - feat(mail/delivery) ## 2026-02-10 - 1.3.0 - feat(mail/delivery)
add error-count based blocking to rate limiter; improve test SMTP server port selection; add tsbuild scripts and devDependency; remove stale backup file add error-count based blocking to rate limiter; improve test SMTP server port selection; add tsbuild scripts and devDependency; remove stale backup file

View File

@@ -16,3 +16,4 @@ tokio.workspace = true
tracing.workspace = true tracing.workspace = true
serde.workspace = true serde.workspace = true
serde_json.workspace = true serde_json.workspace = true
clap.workspace = true

View File

@@ -11,3 +11,6 @@ thiserror.workspace = true
tracing.workspace = true tracing.workspace = true
bytes.workspace = true bytes.workspace = true
mailparse.workspace = true mailparse.workspace = true
regex.workspace = true
base64.workspace = true
uuid.workspace = true

View File

@@ -11,3 +11,9 @@ ring.workspace = true
thiserror.workspace = true thiserror.workspace = true
tracing.workspace = true tracing.workspace = true
serde.workspace = true serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
hickory-resolver.workspace = true
ipnet.workspace = true
rustls-pki-types.workspace = true
psl.workspace = true

View File

@@ -8,7 +8,7 @@ license.workspace = true
mailer-core = { path = "../mailer-core" } mailer-core = { path = "../mailer-core" }
tokio.workspace = true tokio.workspace = true
tokio-rustls.workspace = true tokio-rustls.workspace = true
hickory-dns.workspace = true hickory-resolver.workspace = true
dashmap.workspace = true dashmap.workspace = true
thiserror.workspace = true thiserror.workspace = true
tracing.workspace = true tracing.workspace = true

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/mailer', name: '@serve.zone/mailer',
version: '1.3.0', version: '1.3.1',
description: 'Enterprise mail server with SMTP, HTTP API, and DNS management - built for serve.zone infrastructure' description: 'Enterprise mail server with SMTP, HTTP API, and DNS management - built for serve.zone infrastructure'
} }