29 lines
510 B
TOML
29 lines
510 B
TOML
[package]
|
|
name = "nopalmo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[lib]
|
|
name = "nopalmo_lib"
|
|
path = "src/lib/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "nopalmo"
|
|
path = "src/main.rs"
|
|
|
|
[workspace]
|
|
members = ["commands/info"]
|
|
|
|
[dependencies]
|
|
phf = { version = "0.11.2", features = ["phf_macros"] }
|
|
rand = "0.8.5"
|
|
regex = "1.10.4"
|
|
# rs-cord = { git = "https://github.com/jay3332/rs-cord" }
|
|
serenity = "0.12.1"
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
|
tracing = "0.1.40"
|
|
|
|
[features]
|
|
nsfw_features = []
|
|
premium_features = []
|