forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (25 loc) · 907 Bytes
/
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
[package]
name = "amethyst_locale"
version = "0.3.0"
authors = ["Joël Lupien <[email protected]>"]
readme = "README.md"
description = """
Localisation bindings.
"""
exclude = ["examples/*"]
license = "MIT/Apache-2.0"
keywords = ["game", "localisation", "resource", "management", "amethyst"]
categories = ["filesystem,localisation"]
documentation = "https://www.amethyst.rs/doc/master/doc/amethyst/"
homepage = "https://www.amethyst.rs/"
repository = "https://github.com/amethyst/amethyst"
[badges]
appveyor = { repository = "amethyst/amethyst", branch = "master" }
travis-ci = { repository = "amethyst/amethyst" }
[dependencies]
amethyst_assets = { path = "../amethyst_assets", version = "0.5.0" }
amethyst_core = { path = "../amethyst_core", version = "0.4.0" }
fluent = "0.4.3"
thread_profiler = { version = "0.3", optional = true }
[features]
profiler = [ "thread_profiler/thread_profiler" ]