-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.05 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "vmc"
version = "0.4.0"
license = "MIT OR Apache-2.0"
description = "Implementation of Virtual Motion Capture protocol for virtual avatar tracking."
repository = "https://github.com/pykeio/vmc"
documentation = "https://docs.rs/vmc"
readme = "README.md"
edition = "2021"
keywords = [ "osc" ]
categories = [ "network-programming", "asynchronous" ]
authors = [
"Carson M. <carson@pyke.io>"
]
rust-version = "1.70"
[features]
default = []
serde = [ "dep:serde", "glam/serde" ]
[dependencies]
glam = "0.29"
nom = { version = "7.1", default-features = false, features = [ "alloc" ] }
serde = { version = "1.0", optional = true, features = [ "derive" ] }
tokio = { version = "1.30", features = [ "net" ] }
futures-core = "0.3"
thiserror = "1.0"
[dev-dependencies]
glam = { version = "0.29", features = [ "approx" ] }
tokio = { version = "1.30", features = [ "net", "macros", "signal", "rt-multi-thread" ] }
tokio-test = "0.4"
futures-util = "0.3"
approx = "0.5"
rmp-serde = "1.1"
console = "0.15"
[[example]]
name = "recorder"
required-features = ["serde"]