[package]
edition = "2024"
name = "syncthing-async"
version = "0.2.0"
authors = ["Jayce Fayne <jayce.fayne@mailbox.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for controlling syncthing file synchronization through its REST interface"
readme = "README.md"
keywords = [
"syncthing",
"rest",
"http",
"async",
]
categories = [
"asynchronous",
"concurrency",
"network-programming",
]
license = "MIT"
repository = "https://github.com/jaycefayne/syncthing-rs"
[lib]
name = "syncthing_async"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.futures-core]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"charset",
"http2",
"json",
]
default-features = false
[dependencies.serde]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.syncthing-types]
version = "0.3.0"
[dependencies.tokio]
version = "1"
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]