-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 898 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 898 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
[package]
name = "bevy_sky_gradient"
version = "0.2.0"
edition = "2024"
keywords = ["bevy", "skybox", "atmosphere", "procedural", "gamedev"]
categories = ["game-development", "rendering"]
license = "MIT or Apache-2.0"
readme = "README.md"
description = "Sky rendering plugin for bevy featuring, sky gradient, aurora / northern lights, stars, sun, day-night cycle"
repository = "https://github.com/TanTanDev/bevy_sky_gradient"
[features]
default = ["serde"]
serde = ["dep:serde", "dep:ron", "dep:bincode"]
[dependencies]
bevy = "0.17"
thiserror = "2"
# optional serialization
serde = { version= "1", features = ["derive"], optional = true }
# to serilalize user readable files
ron = {version = "0.12", optional = true}
# to serialize compact files
bincode = {version = "2", optional = true, features = ["serde"]}
[dev-dependencies]
rand = "0.9"
bevy_flycam = "0.17"
bevy-inspector-egui = "0.35"