forked from kgv/bevy_fluent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 1.13 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
[package]
name = "bevy_fluent"
version = "0.11.0"
authors = ["g <kgv@users.noreply.github.com>"]
edition = "2021"
description = "Bevy plugin for localization using Fluent"
readme = "README.md"
homepage = "https://crates.io/crates/bevy_fluent"
repository = "https://github.com/kgv/bevy_fluent"
license = "MIT OR Apache-2.0"
keywords = ["bevy", "gamedev", "internationalization", "localization", "plugin"]
categories = [
"game-development",
"games",
"internationalization",
"localization",
]
exclude = [".github/**/*"]
[dependencies]
bevy = { version = "0.16", default-features = false, features = [
"bevy_asset",
"bevy_log",
] }
fluent = "0.16.0"
fluent-langneg = "0.13.0"
fluent_content = "0.0.5"
futures-lite = "2.2.0"
indexmap = { version = "2.2.5", features = ["serde"] }
intl-memoizer = "0.5.1"
ron = "0.8.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_yaml = "0.9.32"
thiserror = "1.0.58"
tracing = "0.1.40"
unic-langid = { version = "0.9.4", features = ["serde"] }
uuid = { version = "1.7.0", features = ["serde", "v4", "v5"] }
[dev-dependencies]
bevy = "0.16"
unic-langid = { version = "0.9.4", features = ["macros"] }