[package] name = "tangled-api" version = "0.1.0" edition = "2021" description = "XRPC client wrapper for Tangled operations" license = "MIT OR Apache-2.0" [dependencies] anyhow = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } reqwest = { workspace = true } tokio = { workspace = true, features = ["full"] } chrono = { workspace = true } # Optionally depend on ATrium (wired later as endpoints solidify) atrium-api = { workspace = true, optional = true } atrium-xrpc-client = { workspace = true, optional = true } tangled-config = { path = "../tangled-config" } [features] default = [] atrium = ["dep:atrium-api", "dep:atrium-xrpc-client"]