-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 716 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "minasan"
version = "0.0.0"
edition = "2021"
authors = ["Arseniy Belkov <arsfizteh@gmail.com>"]
description = "Telegram Bot to tag all the chat members."
readme = "README.md"
repository = "https://github.com/arseniybelkov/minasan"
license = "MIT"
keywords = ["telegram", "bot"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
simplelog = "0.12.2"
teloxide = { version = "0.12", features = ["macros"] }
tokio = { version = "1.36", features = ["rt", "rt-multi-thread", "macros"] }
log = "0.4.21"
serde_json = "1.0.115"
clap = { version = "4.5.4", features = ["derive"] }
[dev-dependencies]
pretty_assertions = "1.4"
tempfile = "3.10"