mirror of
https://github.com/BreizhHardware/ntfy_alerts.git
synced 2026-01-18 16:37:28 +01:00
Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.10.2 to 0.11.8. - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.2...v0.11.8) --- updated-dependencies: - dependency-name: env_logger dependency-version: 0.11.8 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
549 B
TOML
24 lines
549 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.11", features = ["json", "blocking"] }
|
|
rusqlite = { version = "0.29", features = ["bundled"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
dotenv = "0.15"
|
|
chrono = "0.4"
|
|
warp = "0.3"
|
|
openssl = { version = "0.10", features = ["vendored"] } |