2023-10-22 08:35:09 -04:00
|
|
|
[package]
|
2023-11-28 01:49:51 -05:00
|
|
|
name = "forcebot_rs"
|
2023-10-22 08:35:09 -04:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
dotenv = "0.15.0"
|
2024-03-30 14:26:06 -04:00
|
|
|
tokio = { version = "1.33.0", features = ["full", "tracing"] }
|
2023-10-22 08:35:09 -04:00
|
|
|
twitch-irc = "5.0.1"
|
2023-11-28 23:13:43 -05:00
|
|
|
rand = { version = "0.8.5", features = [] }
|
2024-02-04 14:28:37 -05:00
|
|
|
futures = "0.3"
|
2024-02-13 07:54:35 -05:00
|
|
|
async-trait = "0.1.77"
|
2024-03-24 18:50:11 -04:00
|
|
|
async-recursion = "1.1.0"
|
2024-02-24 22:31:12 -05:00
|
|
|
casual_logger = "0.6.5"
|
2024-03-23 22:40:06 -04:00
|
|
|
chrono = "0.4.35"
|
2024-03-30 14:26:06 -04:00
|
|
|
tokio-console = "0.1.10"
|
|
|
|
console-subscriber = "0.2.0"
|
2024-02-24 22:31:12 -05:00
|
|
|
|
2024-03-24 18:50:11 -04:00
|
|
|
|
2024-02-24 22:31:12 -05:00
|
|
|
[lib]
|
2024-03-01 23:36:37 -05:00
|
|
|
name = "bot_lib"
|
2024-03-20 19:08:01 -04:00
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|