-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (63 loc) · 1.91 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
[package]
name = "bevy_koto"
version = "0.2.0"
edition = "2021"
authors = ["irh <[email protected]>"]
license = "MIT"
description = "Koto support for Bevy"
homepage = "https://koto.dev"
repository = "https://github.com/koto-lang/bevy_koto"
keywords = ["scripting", "language", "koto", "bevy"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["camera", "color", "geometry", "random", "shape", "text", "window"]
camera = []
color = ["koto_color", "bevy/bevy_sprite"]
geometry = ["koto_geometry"]
random = ["koto_random"]
shape = ["bevy/bevy_sprite"]
text = ["bevy/bevy_text"]
window = []
[dependencies]
# Multi-producer multi-consumer channels for message passing
crossbeam-channel = "0.5"
# Provides a clone macro
fb_cloned = "0.1"
# More compact and efficient implementations of the standard synchronization primitives.
parking_lot = "0.12"
# derive(Error)
thiserror = "1"
koto = { version = "0.15", default-features = false, features = ["arc"]}
koto_color = { version = "0.15", default-features = false, optional = true }
koto_geometry = { version = "0.15", default-features = false, optional = true }
koto_random = { version = "0.15", default-features = false, optional = true }
[dependencies.bevy]
version = "0.15"
default-features = false
features = ["bevy_asset", "bevy_core_pipeline", "bevy_window"]
[dev-dependencies]
# Flexible concrete Error type built on std::error::Error
anyhow = "1.0.82"
# A simple to use, efficient, and full-featured Command Line Argument Parser
clap = { version = "4.5.4", features = ["derive"] }
[dev-dependencies.bevy]
version = "0.15"
default-features = false
features = [
"bevy_asset",
"bevy_core_pipeline",
"bevy_gilrs",
"bevy_render",
"bevy_sprite",
"bevy_state",
"bevy_text",
"bevy_ui",
"bevy_window",
"bevy_winit",
"default_font",
"png",
"x11",
"file_watcher",
"multi_threaded",
"tonemapping_luts",
]