godette-rust/Cargo.toml

23 lines
665 B
TOML
Raw Normal View History

2022-10-10 23:53:52 +03:00
[package]
name = "godette"
version = "0.1.0"
edition = "2021"
2022-11-04 19:52:16 +03:00
authors = ["Vladislav Rud <nefrace@gmail.com>"]
2022-10-10 23:53:52 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-11-06 02:24:06 +03:00
teloxide = { version = "0.11.1", features = ["macros", "auto-send"] }
2022-10-10 23:53:52 +03:00
log = "0.4"
pretty_env_logger = "0.4"
2022-11-04 19:52:16 +03:00
tokio = { version = "1.8", features = ["rt-multi-thread", "macros"] }
2022-10-16 01:38:55 +03:00
lazy_static = "1.4.0"
url = "2.3.1"
dotenv = "0.15.0"
regex = "1"
reqwest = "0.11.12"
serde = "1.0.145"
2022-11-04 19:52:16 +03:00
serde_json = "1.0.86"
sqlx = { version = "0.6.2", features = [ "runtime-tokio-rustls", "postgres" ] }
diesel = { version = "2.0.0", features = ["postgres"] }