forked from AS1100K/bevy-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (38 loc) · 1.11 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
40
41
[package]
name = "bevy-discord"
description = "A bevy plugin for sending and receiving discord messages."
version = "0.2.2"
edition = "2021"
authors = ["Aditya Kumar <[email protected]>"]
readme = "README.md"
repository = "https://github.com/AS1100K/bevy-discord"
publish = true
license = "MIT"
keywords = ["bevy", "plugin", "discord"]
[features]
full = ["webhook", "bot", "http"]
webhook = ["dep:reqwest", "dep:serde", "dep:serde_json"]
bot = ["tokio/sync", "http"]
http = ["dep:serenity"]
bot_cache = ["serenity/cache"]
[dependencies]
bevy_app = "0.13"
bevy_ecs = "0.13"
flume = "0.11"
serenity = { version = "0.12", features = [
"gateway",
"framework",
"model",
], optional = true }
paste = "1"
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
], optional = true }
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
tracing = "0.1"
tokio = { version = "1", features = ["rt-multi-thread", "rt"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]