[package]
edition = "2021"
name = "psynet"
version = "0.1.18"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client for Psyonix's PsyNet RPC backend (Rocket League online services)"
homepage = "https://github.com/rlrml/rlru"
documentation = "https://docs.rs/psynet"
readme = "README.md"
keywords = [
"rocket-league",
"psynet",
"rlpp",
"rpc",
"game",
]
categories = [
"api-bindings",
"game-development",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rlrml/rlru"
[lib]
name = "psynet"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.futures-util]
version = "0.3"
[dependencies.hmac]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["raw_value"]
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"net",
"rt",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[target."cfg(not(windows))".dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"gzip",
"deflate",
"brotli",
"stream",
]
default-features = false
[target."cfg(not(windows))".dependencies.tokio-tungstenite]
version = "0.28"
features = ["rustls-tls-webpki-roots"]
[target."cfg(windows)".dependencies.reqwest]
version = "0.12"
features = [
"json",
"native-tls",
"gzip",
"deflate",
"brotli",
"stream",
]
default-features = false
[target."cfg(windows)".dependencies.tokio-tungstenite]
version = "0.28"
features = ["native-tls"]