hangitbot/Cargo.toml

43 lines
883 B
TOML
Raw Normal View History

2023-12-24 10:48:40 +00:00
[package]
name = "hangitbot"
version = "0.1.0"
edition = "2021"
description = "A boring bot for hanging your boss up."
license = "MIT OR Apache-2.0"
build = "build.rs"
2023-12-24 10:48:40 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
shadow-rs = "^0.26.0"
2023-12-24 10:48:40 +00:00
[dependencies]
shadow-rs = "^0.26.0"
2023-12-24 10:48:40 +00:00
wd_log = "0.2.0"
futures = "0.3.29"
strfmt = "^0.2.4"
reqwest= "^0.11"
rand="^0.8.5"
2024-01-18 07:07:02 +00:00
regex = "^1.10.2"
2023-12-24 10:48:40 +00:00
#lazy_static="^1.4.0"
[dependencies.clap]
version = "4.4.6"
features = ["derive", "env"]
[dependencies.tokio]
version = "^1.0"
features = ["full"]
[dependencies.teloxide]
version = "^0.12"
features = ["macros"]
[dependencies.sea-orm]
version = "^0.12.0"
features = ["macros", "sqlx-mysql", "sqlx-sqlite", "sqlx-postgres", "runtime-tokio-rustls"]
[dependencies.migration]
path = "migration"
[dependencies.models]
path = "entity"