feat: implemented bulk requests

This commit is contained in:
TotallyNot 2025-04-29 18:26:00 +02:00
parent 4dd4fd37d4
commit c17f93f600
Signed by: pyrite
GPG key ID: 7F1BA9170CD35D15
10 changed files with 767 additions and 176 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "torn-api"
version = "1.0.3"
version = "1.1.0"
edition = "2021"
description = "Auto-generated bindings for the v2 torn api"
license-file = { workspace = true }
@ -27,12 +27,16 @@ reqwest = { version = "0.12", default-features = false, features = [
"brotli",
] }
thiserror = "2"
futures = { version = "0.3", default-features = false, features = [
"std",
"async-await",
] }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
[build-dependencies]
torn-api-codegen = { path = "../torn-api-codegen", version = "0.1.5" }
torn-api-codegen = { path = "../torn-api-codegen", version = "0.2" }
syn = { workspace = true, features = ["parsing"] }
proc-macro2 = { workspace = true }
prettyplease = "0.2"