-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
101 lines (100 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[package]
name = "bevy_garage"
version = "0.7.0"
authors = ["Alexi Chepura <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Gamelike car simulation playground"
[package.metadata.bundle]
identifier = "io.github.alexichepura.bevy_garage"
[workspace]
resolver = "2"
members = [
"light",
"camera",
"car",
# "dsp",
"track",
# "nn",
# "prisma-cli",
# "api",
# "trainer",
# "db_client",
# "ios",
"track-convert",
# "overture_maps",
# "renet",
]
[profile.release]
codegen-units = 1
[features]
# nn = ["dep:bevy_garage_nn"]
# nn_api = ["bevy_garage_nn?/api"]
# dsp = ["dep:bevy_garage_dsp"]
# virtual_joystick = ["dep:virtual_joystick"]
default = []
[workspace.dependencies]
bevy = { version = "0.14", default-features = false }
bevy_garage_camera = { path = "./camera" }
bevy_garage_car = { path = "./car", default-features = false }
# bevy_garage_dsp = { path = "./dsp" }
bevy_garage_light = { path = "./light" }
# bevy_garage_nn = { path = "./nn" }
bevy_garage_track = { path = "./track" }
bevy_rapier3d = { version = "0.27", features = [
"serde-serialize",
"dim3",
], default-features = false }
cfg-if = "1.0.0"
# dfdx = "0.13"
# prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.8", default-features = false, features = [
# "sqlite",
# "sqlite-create-many",
# ] }
# prisma-client-rust-cli = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.8", default-features = false, features = [
# "sqlite",
# "sqlite-create-many",
# ] }
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
uuid = "1.3"
[dependencies]
bevy = { workspace = true, features = [
"jpeg",
"animation",
"bevy_asset",
"bevy_audio",
"bevy_gilrs",
"bevy_scene",
"bevy_winit",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_gltf",
"bevy_render",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"multi_threaded",
"png",
"hdr",
"ktx2",
"zstd",
"vorbis",
"x11",
"bevy_gizmos",
"android_shared_stdcxx",
"tonemapping_luts",
"default_font",
"webgl2",
] }
bevy_garage_camera = { workspace = true }
# bevy_garage_dsp = { workspace = true, optional = true }
bevy_garage_light = { workspace = true }
bevy_garage_car = { workspace = true, default-features = true }
# bevy_garage_nn = { workspace = true, optional = true }
bevy_garage_track = { workspace = true }
bevy_rapier3d = { workspace = true, features = ["debug-render-3d"] }
uuid = { workspace = true }
# virtual_joystick = { version = "2.2.0", optional = true }