ferogram-session 0.3.2

Session persistence types and storage backends for ferogram
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 = "ferogram-session"
version = "0.3.2"
authors = ["Ankit Chaubey <ankitchaubey.dev@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Session persistence types and storage backends for ferogram"
homepage = "https://github.com/ankit-chaubey/ferogram"
documentation = "https://docs.rs/ferogram-session"
readme = "README.md"
keywords = [
    "telegram",
    "mtproto",
    "session",
    "storage",
    "async",
]
categories = [
    "api-bindings",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ankit-chaubey/ferogram"
resolver = "2"

[package.metadata.docs.rs]
features = [
    "serde",
    "sqlite-session",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
libsql-session = [
    "dep:libsql",
    "dep:tokio",
]
serde = ["dep:serde"]
sqlite-session = ["rusqlite"]

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

[dependencies.base64]
version = "0.22"

[dependencies.libsql]
version = "0.6"
features = ["core"]
optional = true

[dependencies.rusqlite]
version = "0.31"
optional = true

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

[dependencies.tokio]
version = "1"
features = ["sync"]
optional = true

[dependencies.tracing]
version = "0.1"
features = ["log"]