-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (40 loc) · 1.09 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
[package]
name = "bevy_simple_i18n"
version = "0.1.1"
edition = "2021"
authors = ["TurtIeSocks"]
license = "MIT OR Apache-2.0"
description = "Bevy i18n plugin"
repository = "https://github.com/TurtIeSocks/bevy_simple_i18n"
homepage = "https://github.com/TurtIeSocks/bevy_simple_i18n"
keywords = ["bevy", "gamedev", "i18n", "localization"]
categories = ["game-development", "localization"]
readme = "./README.md"
exclude = ["assets/"]
[workspace]
members = ["web"]
[features]
default = ["numbers"]
numbers = ["fixed_decimal", "icu_decimal", "fixed_decimal/ryu"]
[dependencies]
bevy = { version = "0.15.0-rc.3", default-features = false, features = [
"bevy_ui",
"bevy_asset",
"bevy_text",
] }
icu_locid = "1.5.0"
rust-i18n = "3"
fixed_decimal = { version = "0.5.6", optional = true }
icu_decimal = { version = "1.5.0", optional = true }
[dev-dependencies]
bevy = { version = "0.15.0-rc.3" }
rust-i18n = "3"
[build-dependencies]
cargo-emit = "0.2.1"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "changing_locale"
path = "examples/changing_locale.rs"
required-features = ["numbers"]