-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (51 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
55 lines (51 loc) · 1.45 KB
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.4.0"
edition = "2024"
description = """
On-demand Telegram chat analytic generator
"""
readme = "README.md"
homepage = "https://github.com/TheRustyPickle/Talon"
repository = "https://github.com/TheRustyPickle/Talon"
license = "MIT"
keywords = ["analytics", "data", "egui", "gui", "telegram"]
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]
chrono = { version = "0.4.43", features = ["serde"] }
csv = "1.4.0"
dirs = "6.0.0"
eframe = "0.34.1"
egui_extras = { version = "0.34.1", default-features = false, features = [
"datepicker",
] }
egui_plot = "0.35.0"
egui-selectable-table = { version = "0.6.0", features = ["fuzzy-matching"] }
egui-theme-lerp = "0.5.0"
grammers-client = "=0.7.0"
grammers-crypto = "=0.7.0"
grammers-mtproto = "=0.7.0"
grammers-mtsender = "=0.7.0"
grammers-session = "=0.7.0"
grammers-tl-gen = "=0.7.0"
grammers-tl-types = "=0.7.0"
jiff = "0.2.23"
log = "0.4.29"
nucleo-matcher = "0.3.1"
open = "5.3.3"
pretty_env_logger = "0.5.0"
reqwest = { version = "0.13.2", features = ["json"] }
semver = "1.0.27"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
strum = "0.28.0"
strum_macros = "0.28.0"
tokio = { version = "1.51.0", features = ["rt-multi-thread"] }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"