[package]
edition = "2024"
rust-version = "1.86"
name = "beeline"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust helpers for Foursquare/Swarm OAuth and latest checkin polling."
homepage = "https://tdmackey.github.io/beeline/"
documentation = "https://docs.rs/beeline"
readme = "README.md"
keywords = [
"foursquare",
"swarm",
"oauth",
"checkins",
]
categories = [
"api-bindings",
"asynchronous",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/tdmackey/beeline"
[lib]
name = "beeline"
path = "src/lib.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.futures]
version = "0.3"
[dependencies.hmac]
version = "0.13"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"query",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2.0"
[dependencies.url]
version = "2.5"
features = ["serde"]
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"net",
"rt-multi-thread",
"io-util",
"sync",
]