2024-11-22 22:40:17 +00:00
|
|
|
[package]
|
2024-11-23 21:38:56 +00:00
|
|
|
name = "wolves_oxidised"
|
2024-11-22 22:40:17 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-11-23 21:38:56 +00:00
|
|
|
rust-version = "1.82"
|
|
|
|
authors = ["Brendan Golden <silver@skynet.ie>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://forgejo.skynet.ie/Skynet/wolves-oxidised.git"
|
|
|
|
description = "A Rust library to interact with teh Wolves API."
|
2024-11-22 22:40:17 +00:00
|
|
|
|
2024-11-23 18:53:48 +00:00
|
|
|
[features]
|
|
|
|
# this is for anythign in dev and not finalised yet
|
|
|
|
unstable = []
|
|
|
|
|
2024-11-22 22:40:17 +00:00
|
|
|
[dependencies]
|
2024-11-23 01:02:43 +00:00
|
|
|
# for making teh requests
|
|
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
|
2024-11-23 18:40:35 +00:00
|
|
|
# for testing async stuff
|
|
|
|
tokio-test = "0.4"
|
|
|
|
|
|
|
|
|
2024-11-23 01:02:43 +00:00
|
|
|
# parsing teh results
|
|
|
|
serde_json = { version = "1.0", features = ["raw_value"] }
|
|
|
|
serde = { version = "1.0.215", features = ["derive"] }
|