-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (27 loc) · 858 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "oyasumivr_oscquery"
description = "Limited OSCQuery implementation in Rust for use with VRChat, for OyasumiVR."
version = "0.3.0"
edition = "2021"
license = "MIT"
homepage = "https://github.com/Raphiiko/oyasumivr_oscquery"
repository = "https://github.com/Raphiiko/oyasumivr_oscquery"
readme = "README.md"
keywords = ["gamedev", "vrchat", "osc", "oscquery", "oyasumivr"]
categories = [
"game-development",
"network-programming",
"web-programming::http-server",
]
[dependencies]
tokio = { version = "1.35.0", features = ["full"] }
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.108"
hyper = { version = "1.0.1", features = ["full"] }
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
log = "0.4.22"
[dev-dependencies]
rosc = "0.10.1"
env_logger = "0.11.5"