brawl-rs 0.1.0

A Rust wrapper for the Brawl Stars API
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 = "2021"
name = "brawl-rs"
version = "0.1.0"
authors = ["k1llm3sixy"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust wrapper for the Brawl Stars API"
documentation = "https://docs.rs/brawl-rs"
readme = "README.md"
keywords = [
    "brawl-stars",
    "api",
    "async",
    "wrapper",
]
categories = [
    "api-bindings",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/k1llm3sixy/Brawl-Api-rs"

[features]
all = [
    "player",
    "club",
    "events",
    "brawlers",
    "rankings",
    "battle_log",
]
battle_log = []
brawlers = []
club = []
default = [
    "player",
    "battle_log",
]
events = []
player = []
rankings = []

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

[[example]]
name = "battle_log"
path = "examples/battle_log.rs"
required-features = ["battle_log"]

[[example]]
name = "brawlers"
path = "examples/brawlers.rs"
required-features = ["brawlers"]

[[example]]
name = "club"
path = "examples/club.rs"
required-features = ["club"]

[[example]]
name = "events"
path = "examples/events.rs"
required-features = ["events"]

[[example]]
name = "player"
path = "examples/player.rs"
required-features = ["player"]

[[example]]
name = "rankings"
path = "examples/rankings.rs"
required-features = ["rankings"]

[[test]]
name = "api_tests"
path = "tests/api_tests.rs"

[dependencies.chrono]
version = "0.4.44"

[dependencies.reqwest]
version = "0.13.2"
features = ["json"]

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

[dependencies.strum_macros]
version = "0.28.0"

[dependencies.tokio]
version = "1.50.0"
features = [
    "rt",
    "rt-multi-thread",
    "macros",
]