[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
32
[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 }
phf = { version = "0.11.2", features = ["macros"] }
anyhow = { version = "1.0.93", optional = true }
tokio = { version = "1.28.2", features = [
    "net",
    "sync",
    "rt",
    "parking_lot",
], default-features = false, optional = true }
serenity = { version = "0.12", features = [
    "builder",
    "client",
    "rustls_backend",
    "gateway",
    "model",
], default-features = false, optional = true }
poise = { git = "https://github.com/fgardt/poise", branch = "feat/user_apps", optional = true }

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

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