25 lines
650 B
TOML
25 lines
650 B
TOML
[package]
|
|
authors = ["Baptiste Gelez <baptiste@gelez.xyz>"]
|
|
description = "Rocket fairing for easy internationalization with gettext (also supports Actix web)"
|
|
license = "GPL-3.0"
|
|
name = "rocket_i18n"
|
|
readme = "README.md"
|
|
repository = "https://github.com/Plume-org/rocket_i18n"
|
|
keywords = ["i18n", "rocket", "gettext", "internationalization", "localization"]
|
|
categories = ["internationalization", "localization", "web-programming"]
|
|
version = "0.4.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
gettext = "0.4"
|
|
|
|
[dependencies.rocket]
|
|
version = "0.4.0"
|
|
optional = true
|
|
|
|
[dependencies.actix-web]
|
|
version = "1.0"
|
|
optional = true
|
|
|
|
[features]
|
|
default = ["actix-web"]
|