-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
54 lines (47 loc) · 1.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
[package]
name = "bevy-persistent"
description = "A Bevy helper to easily manage resources that need to persist across game sessions."
categories = ["config", "filesystem", "game-development"]
keywords = ["gamedev", "bevy", "persistent", "resource"]
repository = "https://github.com/umut-sahin/bevy-persistent/"
version = "0.7.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = [
"Umut Şahin <[email protected]>",
"Shane Lillie <[email protected]>",
"Eri Pazos <[email protected]>",
"Scott Godwin <[email protected]>",
"Helium <[email protected]>",
"Fallible <[email protected]>"
]
[dependencies]
bevy = { version = "0.15", default-features = false }
bincode = { version = "1.3", optional = true }
ron = { version = "0.8", optional = true }
serde = { version = "1.0" }
serde_ini = { version = "0.2", optional = true }
serde_json = { version = "1.0", optional = true }
serde_yaml = { version = "0.9", optional = true }
thiserror = { version = "2.0" }
toml = { version = "0.8", optional = true }
[target.'cfg(target_family = "wasm")'.dependencies]
gloo-storage = { version = "0.3" }
[dev-dependencies]
anyhow = { version = "1.0" }
dirs = { version = "5.0" }
bevy = { version = "0.15", features = ["serialize"] }
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
tempfile = { version = "3.4" }
[target.'cfg(target_family = "wasm")'.dev-dependencies]
wasm-bindgen-test = { version = "0.3" }
[features]
all = ["bincode", "ini", "json", "pretty", "ron", "toml", "yaml"]
default = []
ini = ["serde_ini"]
json = ["serde_json"]
library = []
pretty = []
yaml = ["serde_yaml"]
[package.metadata.docs.rs]
features = ["all"]