-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (48 loc) · 1.5 KB
/
Cargo.toml
File metadata and controls
59 lines (48 loc) · 1.5 KB
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
[workspace]
members = ["core", "derive"]
[package]
name = "bevy_serde_lens"
version = "0.8.0"
edition = "2024"
authors = ["Mincong Lu <mintlux667@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/mintlu8/bevy_serde_lens"
description = """
Blazingly fast, schema based human-readable serialization crate for the bevy engine.
"""
keywords = ["bevy", "serde", "serialize", "save"]
[features]
default = ["derive"]
## Performance impactful checks at serialization time.
## Enabled by default in `debug` mode regardless of this feature.
extra-checks = []
derive = ["bevy_serde_lens_derive"]
[lib]
doctest = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
bevy_serde_lens_core = { version = "0.18.0", path = "./core" }
bevy_serde_lens_derive = { version = "0.1", path = "./derive", optional = true }
bevy = { version = "0.18.0", default-features = false, features = ["bevy_asset", "bevy_state"] }
erased-serde = "0.4.3"
itertools = "0.13.0"
serde = { version = "1.0.197", features = ["derive"] }
rustc-hash = "2.0.0"
thiserror = "1.0.57"
ref-cast = "1.0.22"
scoped-tls-hkt = "0.1.4"
linkme = { version = "0.3.31", optional = true }
[dev-dependencies]
bevy = "0.18.0"
criterion = "0.5.1"
postcard = { version = "1.0.8", default-features = false, features = ["alloc"] }
rand = "0.8.5"
rand_derive2 = "0.1.21"
ron = "0.8.1"
serde_json = { version = "1.0.114", features = ["preserve_order"] }
[[bench]]
name = "bench"
harness = false