-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 1012 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
30
31
32
33
34
35
36
37
38
[package]
name = "lay-mitouosc"
version = "0.1.3"
authors = ["gyu-don <[email protected]>"]
edition = "2018"
description = "OSC communication library and binary for MITOU project"
license = "Apache-2.0"
repository = "https://github.com/quantum-lay/lay-mitouosc"
publish = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.34"
env_logger = "0.8.2"
lay = "0.1.0"
log = "0.4.11"
rosc = "0.4.2"
thiserror = "1.0.22"
tokio = { version = "0.3.4", features = ["full"] }
# for server binary
lay-steane = { version = "0.1.1", path = "../lay-steane", optional = true }
lay-simulator-gk = { version = "0.1.0", path = "../lay-simulator-gk", optional = true }
[features]
server-binary = ["lay-steane", "lay-simulator-gk"]
[[bin]]
name = "gk-server"
required-features = ["server-binary"]
[[bin]]
name = "steane-gk-server"
required-features = ["server-binary"]
[[bin]]
name = "steane-osc-server"
required-features = ["server-binary"]