bark_rs 0.1.2

A feature-complete Rust client library for Bark push notification service with modular architecture
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "bark_rs"
version = "0.1.2"
authors = ["chiyizi <ch1y1z1@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A feature-complete Rust client library for Bark push notification service with modular architecture"
homepage = "https://github.com/ch1y1z1/bark_rs"
documentation = "https://docs.rs/bark_rs"
readme = "README.md"
keywords = [
    "bark",
    "push",
    "notification",
    "ios",
    "client",
]
categories = [
    "api-bindings",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ch1y1z1/bark_rs"

[features]
async = ["tokio"]
default = ["native-tls"]
native-tls = ["reqwest/default-tls"]
rustls = ["reqwest/rustls-tls"]

[lib]
name = "bark_rs"
path = "src/lib.rs"

[[example]]
name = "async_client"
path = "examples/async_client.rs"

[[example]]
name = "batch_push"
path = "examples/batch_push.rs"

[[example]]
name = "error_handling"
path = "examples/error_handling.rs"

[[example]]
name = "message_builder"
path = "examples/message_builder.rs"

[[example]]
name = "mixed_usage"
path = "examples/mixed_usage.rs"

[[example]]
name = "sync_client"
path = "examples/sync_client.rs"

[dependencies.reqwest]
version = "0.12.23"
features = [
    "json",
    "blocking",
]
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
version = "1.0"
features = [
    "rt",
    "rt-multi-thread",
    "macros",
]
optional = true