[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 } phf = { version = "0.14.0", features = ["phf_macros"] } # 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" }