highlevel-api 0.2.1

Unofficial Rust SDK for the GoHighLevel (HighLevel) API
Documentation
[package]
name = "highlevel-api"
version = "0.2.1"
edition = "2021"
description = "Unofficial Rust SDK for the GoHighLevel (HighLevel) API"
license = "MIT"
repository = "https://github.com/Alba-rosa/highlevel-api-rust"
homepage = "https://github.com/Alba-rosa/highlevel-api-rust"
documentation = "https://docs.rs/highlevel-api"
keywords = ["gohighlevel", "highlevel", "crm", "api", "sdk"]
categories = ["api-bindings", "web-programming::http-client"]
readme = "README.md"
rust-version = "1.75"
exclude = [".github/", ".env.example", "AGENTS.md", "CONTRIBUTING.md"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[features]
default = ["native-tls"]
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]

[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
thiserror = "2"
async-trait = "0.1"
url = "2"
chrono = { version = "0.4", features = ["serde"] }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"

[dev-dependencies]
tokio = { version = "1", features = ["full", "macros"] }
dotenvy = "0.15"