-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
44 lines (36 loc) · 1.32 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
[package]
name = "bevy_mod_sysfail"
authors = ["Nicola Papale"]
description = "Decorate your bevy system with the sysfail macro attribute to handle failure."
license = "Apache-2.0"
readme = "README.md"
keywords = ["bevy", "tool", "macro", "error", "trait"]
categories = ["game-development"]
repository = "https://github.com/nicopap/bevy_mod_sysfail"
exclude = ["assets", ".github"]
version = "7.0.0"
edition = "2021"
[workspace]
members = ["macros_impl"]
[features]
default = ["full"]
full = ["dep:bevy"]
[dependencies]
bevy_ecs = { version = "0.13", default-features = false }
bevy_utils = "0.13"
bevy = { version = "0.13", default-features = false, optional = true }
bevy_mod_sysfail_macros = { path = "./macros_impl", version = "5.0.0" }
anyhow = { version = "1.0", default-features = false }
[dev-dependencies]
bevy = { version = "0.13", default-features = true }
bevy-debug-text-overlay = "8.0.0"
anyhow = "1.0"
thiserror = "1.0"
[workspace.metadata.release]
dependent-version = "upgrade"
[package.metadata.release]
pre-release-replacements = [
{search="\\| 0.13 \\| [0-9.]* \\|",replace="| 0.13 | {{version}} |",file="README.md"},
{search="bevy_mod_sysfail/[0-9.]+/",replace="bevy_mod_sysfail/{{version}}/",file="README.md"},
{search="bevy_mod_sysfail/blob/v[0-9.]+/",replace="bevy_mod_sysfail/blob/v{{version}}/",file="README.md"},
]