[package]
edition = "2024"
rust-version = "1.94"
name = "lenso-notification-plugin"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Plugin-first transactional notification ledger for Lenso."
homepage = "https://github.com/LioRael/lenso-notification-plugin"
readme = "README.md"
keywords = [
"backend",
"framework",
"notification",
"email",
]
categories = [
"web-programming",
"development-tools",
]
license = "MIT"
repository = "https://github.com/LioRael/lenso-notification-plugin"
resolver = "2"
[package.metadata.lenso]
plugin-id = "lenso.notification"
root-slot = "notifications"
[lib]
name = "notification"
path = "src/lib.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.futures]
version = "0.3"
[dependencies.getrandom]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.lenso]
version = "0.5.0"
[dependencies.lenso-capability-email-dispatch]
version = "0.1.0"
[dependencies.lenso-capability-notification-admin]
version = "0.1.0"
[dependencies.lenso-capability-notification-delivery]
version = "0.1.0"
[dependencies.lenso-capability-notification-template]
version = "0.1.0"
[dependencies.lenso-capability-notification-transactional]
version = "0.1.0"
[dependencies.lenso-capability-secrets]
version = "0.1.1"
[dependencies.lenso-postgres-kit]
version = "0.1.0"
[dependencies.regex]
version = "1.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"tls-rustls-ring-webpki",
"postgres",
"chrono",
"json",
]
default-features = false
[dependencies.thiserror]
version = "2.0"
[dependencies.zeroize]
version = "1.9"
[dev-dependencies.lenso-app-plan]
version = "0.3.0"
[dev-dependencies.lenso-kernel]
version = "0.2.0"
[dev-dependencies.lenso-native-adapter]
version = "0.3.0"
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt-multi-thread",
]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_raw_string_hashes = "allow"
result_large_err = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"