[package]
edition = "2024"
name = "arc_api_rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async Rust client for the MetaForge Arc Raiders API"
homepage = "https://github.com/Dakota-LM/arc_api_rs"
documentation = "https://docs.rs/arc_api_rs"
readme = "README.md"
keywords = [
"arc-raiders",
"metaforge",
"gaming",
"api-client",
"async",
]
categories = [
"api-bindings",
"games",
]
license = "MIT"
repository = "https://github.com/Dakota-LM/arc_api_rs"
[lib]
name = "arc_api_rs"
path = "src/lib.rs"
[[example]]
name = "events_schedule"
path = "examples/events_schedule.rs"
[[example]]
name = "game_map_data"
path = "examples/game_map_data.rs"
[[example]]
name = "list_bots"
path = "examples/list_bots.rs"
[[example]]
name = "list_items"
path = "examples/list_items.rs"
[[example]]
name = "list_quests"
path = "examples/list_quests.rs"
[[example]]
name = "list_traders"
path = "examples/list_traders.rs"
[[test]]
name = "bots"
path = "tests/bots.rs"
[[test]]
name = "events"
path = "tests/events.rs"
[[test]]
name = "items"
path = "tests/items.rs"
[[test]]
name = "maps"
path = "tests/maps.rs"
[[test]]
name = "pagination"
path = "tests/pagination.rs"
[[test]]
name = "quests"
path = "tests/quests.rs"
[[test]]
name = "rate_limit"
path = "tests/rate_limit.rs"
[[test]]
name = "traders"
path = "tests/traders.rs"
[dependencies.governor]
version = ">=0.10.4"
[dependencies.reqwest]
version = ">=0.13.1"
features = [
"json",
"gzip",
"query",
"brotli",
"deflate",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = ">=1.0"
[dependencies.thiserror]
version = ">=2.0.18"
[dependencies.time]
version = ">=0.3.47"
features = [
"serde",
"parsing",
"formatting",
]
[dependencies.time-macros]
version = ">=0.2.27"
[dependencies.tokio]
version = "1"
features = [
"time",
"macros",
"rt-multi-thread",
]
[dependencies.url]
version = "2"
features = ["serde"]
[dependencies.uuid]
version = ">=1.21.0"
features = [
"serde",
"v4",
]
[dev-dependencies.wiremock]
version = ">=0.5.9"