mirror of
https://github.com/BreizhHardware/ntfy_alerts.git
synced 2026-01-18 16:37:28 +01:00
Bumps [warp](https://github.com/seanmonstar/warp) from 0.3.7 to 0.4.2. - [Release notes](https://github.com/seanmonstar/warp/releases) - [Changelog](https://github.com/seanmonstar/warp/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/warp/compare/v0.3.7...v0.4.2) --- updated-dependencies: - dependency-name: warp dependency-version: 0.4.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
615 B
TOML
27 lines
615 B
TOML
[package]
|
|
name = "github-ntfy"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "github-ntfy"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
vendored-openssl = ["openssl/vendored"]
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
reqwest = { version = "0.12", features = ["json", "blocking"] }
|
|
rusqlite = { version = "0.37", features = ["bundled"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
dotenv = "0.15"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
warp = "0.4"
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
|
rand = "0.9"
|
|
bcrypt = "0.17"
|