Files
vrchatapi-rust/Cargo.toml
C0D3 M4513R 8025a910e7 Initial pass of adding integration tests.
This version just does the bare minimum and logs in and out again.
2024-09-19 18:48:25 +02:00

28 lines
746 B
TOML

[package]
name = "vrchatapi"
version = "1.18.3"
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'] }
totp_rfc6238 = "0.6.1"
anyhow = "1"
thiserror = "1"
dotenv = "0.15"
base32 = "0.5.1"
[[test]]
name = "integration"
path = "integration/main.rs"
harness = false