24 lines
638 B
TOML
24 lines
638 B
TOML
|
|
[package]
|
||
|
|
name = "vapora-channels"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
homepage = "https://vapora.dev"
|
||
|
|
rust-version.workspace = true
|
||
|
|
description = "Outbound notification channels: Slack, Discord, Telegram"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
reqwest = { workspace = true }
|
||
|
|
async-trait = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
regex = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tokio = { workspace = true, features = ["full"] }
|
||
|
|
wiremock = { workspace = true }
|