-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (31 loc) · 981 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
[package]
name = "bevy_osc"
version = "0.6.0"
authors = ["Black Phlox <bphlox@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/BlackPhlox/bevy_osc"
documentation = "https://docs.rs/bevy_osc"
description = "Send and receive OSC data to and from bevy and other programs or controllers."
keywords = ["gamedev", "bevy", "osc", "encoding", "control"]
categories = ["game-development", "game-engines", "encoding" ]
exclude = [
".github/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "bevy_osc"
[dependencies]
nannou_osc = "0.19.0"
[dependencies.bevy]
version = "0.14"
default-features = false
[dev-dependencies.bevy]
version = "0.14"
features = ["bevy_asset", "bevy_render", "bevy_winit"]
default-features = false
[target.'cfg(target_os = "linux")'.dev-dependencies.bevy]
version = "0.14"
features = ["x11", "wayland"]
default-features = false