[package] name = "talon-gui" version = "1.0.7" edition = "2021" authors = ["TheRustyPickle "] 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"