23 lines
557 B
TOML
23 lines
557 B
TOML
[package]
|
|
name = "roll_bot"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
structopt = "0.3.26"
|
|
config = "0.15.16"
|
|
rppal = "0.22.1"
|
|
raas_types = { version = "1.0.0", registry = "ahines"}
|
|
log = "0.4.21"
|
|
env_logger = "0.11.3"
|
|
thiserror = "2.0.16"
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
prost = "0.14.1"
|
|
async-nats = "0.44.1"
|
|
tokio = { version = "1.47.1", features = ["io-util", "macros", "rt", "rt-multi-thread"] }
|
|
futures-util = "0.3.31"
|
|
|
|
|