[package]
edition = "2021"
name = "beeper-desktop-api"
version = "0.1.2"
authors = ["Erdem Göksel"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust API wrapper for Beeper Desktop API"
readme = "README.md"
keywords = [
"beeper",
"messaging",
"chat",
"api-wrapper",
"async",
]
categories = [
"api-bindings",
"authentication",
]
license = "MIT"
repository = "https://github.com/ErdemGKSL/beeper-desktop-api"
[lib]
name = "beeper_desktop_api"
path = "src/lib.rs"
[[example]]
name = "fetch_accounts"
path = "examples/fetch_accounts.rs"
[[example]]
name = "fetch_chats"
path = "examples/fetch_chats.rs"
[[example]]
name = "fetch_messages"
path = "examples/fetch_messages.rs"
[[example]]
name = "focus_app"
path = "examples/focus_app.rs"
[[example]]
name = "search"
path = "examples/search.rs"
[[example]]
name = "send_message"
path = "examples/send_message.rs"
[[test]]
name = "accounts"
path = "tests/accounts.rs"
[[test]]
name = "app"
path = "tests/app.rs"
[[test]]
name = "chats"
path = "tests/chats.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "messages"
path = "tests/messages.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.reqwest]
version = "0.12.25"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.urlencoding]
version = "2.1"