[package]
edition = "2024"
name = "helldivers2_rs"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A wrapper for the unofficial helldivers-2/api."
readme = "README.md"
keywords = [
"helldivers",
"api",
"wrapper",
]
license = "MIT"
repository = "https://github.com/michihupf/helldivers2-rs"
[features]
rustls-tls = ["reqwest/rustls-tls"]
[lib]
name = "helldivers2_rs"
path = "src/lib.rs"
[[test]]
name = "assignment"
path = "tests/assignment.rs"
[[test]]
name = "campaign"
path = "tests/campaign.rs"
[[test]]
name = "dispatch"
path = "tests/dispatch.rs"
[[test]]
name = "planet"
path = "tests/planet.rs"
[[test]]
name = "spacestation"
path = "tests/spacestation.rs"
[[test]]
name = "stats"
path = "tests/stats.rs"
[[test]]
name = "war"
path = "tests/war.rs"
[dependencies.chrono]
version = "0.4.38"
[dependencies.helldivers2_rs_derive]
version = "0.1.0"
[dependencies.json]
version = "0.12.4"
[dependencies.lazy_static]
version = "1.4.0"
[dependencies.reqwest]
version = "0.12.4"
features = ["json"]
[dependencies.serde]
version = "1.0.203"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.117"
[dependencies.serde_repr]
version = "0.1.19"
[dependencies.serde_with]
version = "3.8.1"
features = ["chrono"]
[dependencies.thiserror]
version = "1.0.61"
[dependencies.tokio]
version = "1.38.0"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.const_format]
version = "0.2.32"