[package]
name = "clickup"
version = "0.3.0"
edition = "2021"
authors = ["eLai Integration Team"]
description = "Cliente completo da API ClickUp com funcionalidades avançadas (smart search, fuzzy matching)"
license = "MIT"
repository = "https://github.com/nextlw/api_clickup"
homepage = "https://github.com/nextlw/api_clickup"
documentation = "https://docs.rs/clickup"
keywords = ["clickup", "api", "client", "task-management", "productivity"]
categories = ["api-bindings", "web-programming::http-client"]
readme = "README.md"
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE"
]
[lib]
name = "clickup"
path = "src/lib.rs"
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.0", features = ["sync", "time"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
strsim = "0.11"
deunicode = "1.6"
tracing = "0.1"
chrono = { version = "0.4", features = ["serde"] }
urlencoding = "2.1"
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
[dev-dependencies]
tokio = { version = "1.0", features = ["full", "test-util"] }