lineark-sdk 0.8.2

Typed, async-first Rust SDK for the Linear GraphQL API
Documentation
[package]
name = "lineark-sdk"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "Typed, async-first Rust SDK for the Linear GraphQL API"
readme = "README.md"

[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
home = "0.5"
url = "2"
lineark-derive = { path = "../lineark-derive", version = "0.8.2" }

[dev-dependencies]
wiremock = "0.6"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "test-util"] }
tempfile = "3"
test-with = { version = "0.15", default-features = false, features = ["runtime"] }
libtest-with = "0.8.1-13"
uuid = { version = "1", features = ["v4"] }

[[test]]
name = "online"
harness = false

[[test]]
name = "blocking_online"
harness = false
required-features = ["blocking"]

[features]
default = []
blocking = []