-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (38 loc) · 1.13 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.2"
bevy_ecs = "^0.14.2"
serenity = { version = "^0.12.2", features = [
"gateway",
"framework",
"model",
], optional = true }
reqwest = { version = "^0.12.5", features = [
"json",
"rustls-tls",
], optional = true }
serde = { version = "^1.0.203", features = ["derive"], optional = true }
serde_json = { version = "^1.0.117", optional = true }
tracing = "^0.1.40"
tokio = { version = "^1.38.0", features = ["rt-multi-thread", "rt"] }
paste = "1.0.15"
flume = "^0.11.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]