1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "smtp2tg"
version = "0.1.0"
authors = [ "arcade" ]
edition = "2021"
[dependencies]
anyhow = "*"
async-std = { version = "*", features = [ "tokio1" ] }
async-trait = "*"
config = { version = "*", default-features = false, features = [ "toml" ] }
telegram-bot = { git = "https://github.com/telegram-rs/telegram-bot" }
mail-parser = { version = "*", features = ["serde", "serde_support"] }
#mail-parser = "*"
#rust-smtp-server = "*"
#tokio = "*"
samotop = "*"
[profile.release]
lto = true
codegen-units = 1
|
<
<
<
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[package]
name = "smtp2tg"
version = "0.1.0"
authors = [ "arcade" ]
edition = "2021"
[dependencies]
anyhow = "*"
async-std = { version = "*", features = [ "tokio1" ] }
config = { version = "*", default-features = false, features = [ "toml" ] }
telegram-bot = { git = "https://github.com/telegram-rs/telegram-bot" }
mail-parser = { version = "*", features = ["serde", "serde_support"] }
samotop = "*"
[profile.release]
lto = true
codegen-units = 1
|