-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
72 lines (61 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "bevy_plot"
version = "0.1.6"
edition = "2021"
authors = ["Eliot Bolduc"]
description = "A Bevy plugin for plotting data and explicit functions."
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["bevy", "plot", "curve", "graph", "gamedev"]
repository = "https://github.com/eliotbo/bevy_plot"
categories = [
"visualization",
"game-engines",
"game-development",
"mathematics",
"science",
]
[dependencies]
bevy = { version = "0.15.1", default-features = false, features = [
"bevy_render",
"x11",
"bevy_asset",
"file_watcher",
"multi_threaded",
"bevy_sprite",
"bevy_picking",
"bevy_text",
"bevy_window",
# "bevy_sprite_picking_backend",
] }
# itertools-num = "0.1"
# bytemuck = "1.21"
rand = "0.8"
bevy_framepace = "0.18"
# bevy_picking = { version = "0.15.0-rc.3" } # why do we need this?
# bevy_text = { version = "0.15.0" }
# crevice = "0.11"
[features]
default = []
unstable = []
# [[example]]
# name = "bevy"
# path = "examples/bevy.rs"
# [[example]]
# name = "markers"
# path = "examples/markers.rs"
# [[example]]
# name = "minimal"
# path = "examples/minimal.rs"
# [[example]]
# name = "func"
# path = "examples/func.rs"
# [[example]]
# name = "animate"
# path = "examples/animate.rs"
# [[example]]
# name = "runtime_setter"
# path = "examples/runtime_setter.rs"
# [[example]]
# name = "gege"
# path = "examples/gege.rs"