-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (29 loc) · 861 Bytes
/
Cargo.toml
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
[package]
name = "dsc-tg-forwarder"
version = "0.2.0"
edition = "2021"
readme = "README.md"
authors = ["Aleksei Rybin <0xalekseirybin@gmail.com>"]
repository = "https://github.com/tapnisu/dsc-tg-forwarder/"
description = "Selfbot to send your incoming Discord messages to Telegram"
license = "MIT"
# Don't forget to update `.github/workflows/test.yml`
rust-version = "1.74"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
home = "0.5"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serenity = { git = "https://github.com/vars1ty/serenity", rev = "a41f5d7c", default-features = false, features = [
"builder",
"cache",
"client",
"gateway",
"http",
"model",
"utils",
"rustls_backend",
] }
teloxide = "0.12"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }