Overview
| Comment: | getting rid of direct tokio dependancy properly |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | v0.5.4 |
| Files: | files | file ages | folders |
| SHA3-256: |
8ea7b79fca20b6ab24918da2a095d7b4 |
| User & Date: | arcade on 2026-01-02 06:38:43.283 |
| Other Links: | manifest | tags |
Context
|
2026-01-07
| ||
| 07:50 | Create new branch named "release" check-in: 2f3e033caa user: arcade tags: release | |
|
2026-01-02
| ||
| 06:52 | update/fix workflows check-in: d9d438563e user: arcade tags: trunk | |
| 06:38 | getting rid of direct tokio dependancy properly check-in: 8ea7b79fca user: arcade tags: trunk, v0.5.4 | |
|
2026-01-01
| ||
| 08:47 | add proper tokio runtime, clean up junk about short headers, add api_gateway support check-in: 14ef340959 user: arcade tags: trunk, v0.5.3 | |
Changes
Modified Cargo.lock
from [8f52ff6ce7]
to [85ace371bd].
| ︙ | |||
1514 1515 1516 1517 1518 1519 1520 | 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 | - | "lazy_static", "mail-parser", "mailin-embedded", "regex", "smol", "stacked_errors", "tgbot", |
| ︙ | |||
1678 1679 1680 1681 1682 1683 1684 | 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 | - - - - - - - - - - - - | checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" dependencies = [ "bytes", "libc", "mio", "pin-project-lite", "socket2", |
| ︙ | |||
2265 2266 2267 2268 2269 2270 2271 | 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 | - + - + | "proc-macro2", "quote", "syn", ] [[package]] name = "zmij" |
Modified Cargo.toml
from [b085dca268]
to [f7be24f9e9].
| ︙ | |||
12 13 14 15 16 17 18 | 12 13 14 15 16 17 18 19 20 21 22 | - |
lazy_static = "1.5.0"
mail-parser = { version = "0.11", features = ["serde"] }
mailin-embedded = "^0"
regex = "1.11.1"
smol = "2.0.2"
stacked_errors = "0.7.1"
tgbot = "0.40"
|
Modified src/main.rs
from [e405a4dd11]
to [09f799d36f].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | - + - - + + + + + + + - - + + + + + | //! Simple SMTP-to-Telegram gateway. Can parse email and send them as telegram //! messages to specified chats, generally you specify which email address is //! available in configuration, everything else is sent to default address. mod mail; mod telegram; mod utils; #[cfg(test)] mod tests; use crate::mail::MailServer; |
| ︙ |