-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (31 loc) · 1.03 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "slack-blocks"
version = "0.25.0"
description = "Models + clientside validation for Slack's JSON Block Kit"
edition = "2018"
authors = ["Orion Kindel <cakekindel@gmail.com>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/cakekindel/slack-block-kit-rs"
repository = "https://github.com/cakekindel/slack-block-kit-rs"
readme = "README.md"
keywords = ["slack", "messages", "models", "ergonomic", "fully-documented"]
categories = ["data-structures"]
[features]
unstable = ["blox", "validation"]
blox = ["mox"]
validation = ["validator", "validator_derive"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
serde = { version = "^1", features = ["derive"] }
validator = { version = "0.10.0", optional = true }
validator_derive = { version = "0.10.0", optional = true }
mox = { version = "0.12", optional = true }
[dev-dependencies]
serde_json = "^1"
lazy_static = "1.4.0"
mox = "0.12"
pretty_assertions = "0.7.2"