Closed Matheuswells closed 1 month ago
What features do you have enabled? Show your full cargo.toml.
You disabled the default features alongside the utils feature, which is required here.
For more information in the future, please check out our docs for the crate.
here is my cargo.toml
[package]
name = "*******"
version = "0.1.0"
edition = "2021"
authors = ["******<*****@*****.***>"]
[dependencies]
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "macros"] }
serenity = { default-features = false, features = [
"client",
"gateway",
"model",
"rustls_backend",
"framework",
"standard_framework",
], version = "0.12.2" }
dotenvy = "0.15"
checking the docs it works after enabling utils
and collector
features
tks for the help @jamesbt365 my bad about the multiple issues