-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 780 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 780 Bytes
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
[package]
name = "bevy_mouse_tracking_plugin"
description = "A plugin for effortless mouse tracking in the bevy game engine."
version = "0.7.0"
authors = ["JoJoJet <joe102000@gmail.com>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/JoJoJet/bevy-mouse-tracking"
keywords = ["gamedev", "bevy", "mouse", "input"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.bevy]
version = "0.12"
default-features = false
features = [
"bevy_core_pipeline",
"bevy_render"
]
[dev-dependencies.bevy]
version = "0.12"
default-features = false
features = [
"bevy_core_pipeline",
"bevy_render",
"bevy_sprite",
"bevy_text",
"png",
"bevy_asset",
"bevy_winit",
"x11"
]