wolves-oxidised/Cargo.toml
Brendan Golden eee6a76c69
All checks were successful
On_Push / lint_fmt (push) Successful in 4s
On_Push / lint_clippy (push) Successful in 2s
On_Push / test (push) Successful in 1s
On_Push / build (push) Successful in 2s
fix: remove rust version entirely
2024-11-23 21:42:22 +00:00

25 lines
No EOL
642 B
TOML

[package]
name = "wolves_oxidised"
version = "0.1.0"
edition = "2021"
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."
[features]
# this is for anythign in dev and not finalised yet
unstable = []
[dependencies]
# for making teh requests
reqwest = { version = "0.12", features = ["json"] }
# for testing async stuff
tokio-test = "0.4"
# parsing teh results
serde_json = { version = "1.0", features = ["raw_value"] }
serde = { version = "1.0.215", features = ["derive"] }