-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
55 lines (51 loc) · 1.46 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "talon-gui"
version = "1.0.7"
edition = "2021"
authors = ["TheRustyPickle <rusty.pickle94@gmail.com>"]
readme = "README.md"
description = """
On-demand Telegram chat analytic generator
"""
homepage = "https://github.com/TheRustyPickle/Talon"
repository = "https://github.com/TheRustyPickle/Talon"
license = "MIT"
keywords = ["telegram", "analytics", "gui", "data", "egui"]
categories = ["gui"]
exclude = ["/fonts"]
[[bin]]
name = "talon"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
grammers-client = "=0.5.0"
grammers-session = "=0.5.1"
grammers-mtproto = "=0.5.0"
grammers-crypto = "=0.5.1"
grammers-tl-gen = "=0.5.1"
grammers-tl-types = "=0.5.1"
grammers-mtsender = "=0.5.0"
tokio = { version = "1.39.1", features = ["rt-multi-thread"] }
log = "0.4.22"
pretty_env_logger = "0.5.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
dirs = "5.0.1"
open = "5.3.0"
reqwest = { version = "0.12.8", features = ["json"] }
eframe = "0.29.1"
egui_extras = { version = "0.29.1", features = ["datepicker"] }
egui_plot = "0.29.0"
egui-dropdown = "0.11.0"
egui-modal = "0.5.0"
egui-theme-lerp = "0.1.2"
chrono = { version = "0.4.38", features = ["serde"] }
semver = "1.0.23"
rayon = "1.10.0"
csv = "1.3.0"
strum = "0.26.3"
strum_macros = "0.26.4"
egui-selectable-table = "0.1.0"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"