Files
vrchatapi-rust/Cargo.toml
C0D3 M4513R 4294b4bff4 make crate async (#8)
* Make vrcapi async

* Apply Changes
2024-07-20 18:31:32 -06:00

18 lines
585 B
TOML

[package]
name = "vrchatapi"
version = "1.17.6"
authors = ["vrchatapi.lpv0t@aries.fyi"]
description = "VRChat API Client for Rust"
license = "MIT"
edition = "2021"
[dependencies]
serde = { version = "^1.0", features = ["derive"] }
serde_with = { version = "^3.8", default-features = false, features = ["base64", "std", "macros"] }
serde_json = "^1.0"
url = "^2.5"
uuid = { version = "^1.8", features = ["serde", "v4"] }
reqwest = { version = "^0.12", features = ["json", "cookies", "multipart"] }
[dev-dependencies]
tokio = { version = '1', features = ['macros', 'rt-multi-thread'] }