internationalization-rs/Cargo.toml

25 lines
725 B
TOML
Raw Normal View History

2019-10-03 08:56:22 +00:00
[package]
2019-10-10 13:23:45 +00:00
name = "locales"
2019-10-10 13:24:32 +00:00
version = "0.1.0"
2019-10-03 08:56:22 +00:00
authors = ["Terry Raimondo <terry.raimondo@gmail.com>"]
edition = "2018"
description = "Easy to use I18n"
2019-10-10 13:23:45 +00:00
keywords = ["i18n", "internationalization", "locales", "localization"]
2019-10-03 08:56:22 +00:00
license = "MIT/Apache-2.0"
2019-10-03 11:56:43 +00:00
repository = "https://github.com/terry90/internationalization-rs"
homepage = "https://github.com/terry90/internationalization-rs"
2019-10-09 00:37:41 +00:00
build = "build.rs"
2019-10-03 08:56:22 +00:00
2019-10-09 00:37:41 +00:00
[build-dependencies]
2019-10-03 11:56:43 +00:00
glob = "0.3.0"
2019-10-09 00:37:41 +00:00
quote = "1.0.2"
serde_json = "1.0.41"
2019-10-09 01:13:34 +00:00
proc-macro2 = "1.0"
2019-10-09 15:34:37 +00:00
regex = "1.3.1"
lazy_static = "1.4.0"
2023-04-26 22:26:25 +00:00
dotenvy = "0.15.7"
2019-10-09 01:13:34 +00:00
[badges]
travis-ci = { repository = "terry90/internationalization-rs" }
coveralls = { repository = "terry90/internationalization-rs", branch = "master", service = "github" }