Create romtom_discord_bot_crate

This commit is contained in:
2025-01-29 18:58:56 +00:00
parent 9166818299
commit 42108ea8e7
5 changed files with 25 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
[package]
name = "rotom_discord_bot"
version = "0.1.0"
edition = "2021"
[dependencies]
rotom_core = { path = "../rotom_core" }
rotom_database = { path = "../rotom_database", default-features = false }
[features]
default = ["mysql", "postgres", "sqlite"]
mysql = ["rotom_database/mysql"]
postgres = ["rotom_database/postgres"]
sqlite = ["rotom_database/sqlite"]