-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 780 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 780 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
25
26
27
28
29
30
31
32
33
34
[package]
name = "commit-notifier"
authors = [ "Lin Yinfeng <lin.yinfeng@outlook.com>" ]
version = "0.2.2"
edition = "2024"
description = """
A simple bot tracking git commits/PRs/issues/branches
"""
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
teloxide = { version = "*", features = [ "macros" ] }
git2 = "*"
tokio = { version = "*", features = [ "macros", "rt-multi-thread" ] }
futures = "*"
deadpool-sqlite = "*"
rusqlite = "*"
log = "*"
pretty_env_logger = "*"
thiserror = "*"
clap = { version = "*", features = [ "cargo", "derive" ] }
regex = "*"
serde_json = "*"
serde_regex = "*"
serde = "*"
cron = "*"
chrono = "*"
once_cell = "*"
fs4 = "*"
octocrab = "*"
url = "*"
lockable = "*"
version-compare = "*"