-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (24 loc) · 829 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "slack-messaging"
version = "0.3.3"
authors = ["kaicoh <[email protected]>"]
edition = "2021"
keywords = ["slack", "messaging", "webhook"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/kaicoh/slack-messaging"
documentation = "https://docs.rs/slack-messaging"
description = "Support building messages for Slack Messaging API"
[package.metadata.docs.rs]
all-features = true
[dependencies]
chrono = { version = "0.4", optional = true }
once_cell = { version = "1.20", optional = true }
regex = { version = "1.11", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
[features]
fmt = ["dep:chrono", "dep:once_cell", "dep:regex"]