[no description]
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
[package]
name = "emoji"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
mindus = { version = "5.0.14", default-features = false }
anyhow = { version = "1.0.93", optional = true }
tokio = { version = "1.28.2", features = [
    "net",
    "sync",
    "rt",
    "parking_lot",
], default-features = false, optional = true }
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "next", features = [
    "builder",
    # "client",
    "rustls_backend",
    "gateway",
    "model",
], default-features = false, optional = true }
# poise = { git = "https://github.com/serenity-rs/poise", branch = "serenity-next", optional = true }

[features]
build = ["serenity", "tokio", "anyhow"]
default = []

[patch.crates-io]
mindus = { git = "https://github.com/bend-n/mindus" }