-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
29 lines (27 loc) · 878 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
[package]
authors = ["Johan Helsing <[email protected]>"]
categories = ["game-development"]
description = "Procedural noise primitives for Bevy"
edition = "2021"
keywords = ["gamedev", "bevy", "noise", "pcg", "simplex_noise"]
license = "MIT"
name = "noisy_bevy"
repository = "https://github.com/johanhelsing/noisy_bevy"
version = "0.8.0"
[dependencies]
bevy = { version = "0.15", default-features = false, features = [
"bevy_asset",
"bevy_render",
] }
[dev-dependencies]
bevy = { version = "0.15", default-features = false, features = [
"bevy_sprite",
"bevy_winit",
"x11", # github actions runners don't have libxkbcommon installed, so can't use wayland
] }
rand = "0.8"
bevy_pancam = { version = "0.16", features = ["bevy_egui"] }
bevy_egui = { version = "0.31", default-features = false, features = [
"default_fonts",
] }
insta = "1.21"