make crate async (#8)

* Make vrcapi async

* Apply Changes
This commit is contained in:
C0D3 M4513R
2024-07-21 02:31:32 +02:00
committed by GitHub
parent 2c4cf7d817
commit 4294b4bff4
19 changed files with 441 additions and 433 deletions

View File

@ -12,4 +12,7 @@ serde_with = { version = "^3.8", default-features = false, features = ["base64",
serde_json = "^1.0"
url = "^2.5"
uuid = { version = "^1.8", features = ["serde", "v4"] }
reqwest = { version = "^0.12", features = ["json", "blocking", "cookies", "multipart"] }
reqwest = { version = "^0.12", features = ["json", "cookies", "multipart"] }
[dev-dependencies]
tokio = { version = '1', features = ['macros', 'rt-multi-thread'] }