-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (30 loc) · 1022 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
31
32
33
34
[package]
name = "l10n"
version = "0.1.0"
description = "Opinionated localization library built upon fluent-bundle."
authors = ["Mathieu Tricoire <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/MathieuTricoire/l10n"
repository = "https://github.com/MathieuTricoire/l10n"
documentation = "https://docs.rs/l10n"
readme = "README.md"
categories = ["localization", "internationalization"]
keywords = ["l10n", "localization", "i18n", "internationalization", "macros"]
edition = "2021"
# Keep in sync with Cargo.toml files, clippy.toml and .github/workflows/ci.yml
rust-version = "1.61"
[workspace]
members = ["core", "impl"]
exclude = ["fluent-rs"]
[dependencies]
l10n_core = { version = "=0.1.0", path = "core" }
l10n_impl = { version = "=0.1.0", path = "impl" }
once_cell = "1.13"
[dev-dependencies]
fluent-pseudo = "0.3"
indoc = "1.0"
rustversion = "1.0"
tempfile = "3.3"
trybuild = { version = "1.0", features = ["diff"] }
[features]
allow-incomplete = ["l10n_impl/allow-incomplete"]