hermes-tdata 0.1.1

Pure Rust parser for Telegram Desktop's tdata storage format. Decrypts local storage and extracts auth keys without Qt/C++ dependencies.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "hermes-tdata"
version = "0.1.1"
authors = ["Stranmor"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust parser for Telegram Desktop's tdata storage format. Decrypts local storage and extracts auth keys without Qt/C++ dependencies."
readme = "README.md"
keywords = [
    "telegram",
    "tdata",
    "parser",
    "mtproto",
    "tdesktop",
]
categories = [
    "cryptography",
    "parsing",
    "api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/stranmor/hermes-tdata"
resolver = "2"

[package.metadata.cargo-machete]
ignored = [
    "md-5",
    "serde",
]

[features]
default = []
serde = ["dep:serde"]

[lib]
name = "hermes_tdata"
path = "src/lib.rs"

[[example]]
name = "cli"
path = "examples/cli.rs"

[[example]]
name = "test_tdata"
path = "examples/test_tdata.rs"

[dependencies.byteorder]
version = "1.5"

[dependencies.dirs]
version = "6"

[dependencies.grammers-crypto]
version = "0.7"

[dependencies.grammers-session]
version = "0.7"

[dependencies.md-5]
version = "0.10"

[dependencies.pbkdf2]
version = "0.12"
features = ["sha2"]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.sha1]
version = "0.10"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.clap]
version = "4"
features = [
    "derive",
    "env",
]

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "json",
]