[package] name = "gotify-rs" version = "0.1.0" edition = "2021" license = "MIT" description = "A wrapper for the Gotify API." homepage = "https://github.com/ethanhs/gotify-rs" repository = "https://github.com/ethanhs/gotify-rs" readme = "README.md" documentation = "https://docs.rs/gotify-rs" [features] default = ["async"] async = ["async-trait", "tokio"] [dependencies] anyhow = "1.0.71" async-trait = { version = "0.1.68", optional = true } reqwest = { version = "0.11.18", features = ["json", "stream", "blocking"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" [dependencies.tokio] version = "1.28.1" optional = true features = ["fs"] [dev-dependencies] httpmock = "0.6"