anki/rslib/i18n/Cargo.toml

37 lines
889 B
TOML
Raw Normal View History

[package]
name = "anki_i18n"
version = "0.0.0"
edition = "2018"
authors = ["Ankitects Pty Ltd and contributors"]
license = "AGPL-3.0-or-later"
description = "Anki's Rust library i18n code"
build = "build/main.rs"
[lib]
name = "anki_i18n"
path = "src/lib.rs"
[[bin]]
name = "write_json"
path = "build/write_json.rs"
# After updating anything below, run ../cargo/update.py
[build-dependencies]
2021-03-27 04:24:11 +01:00
fluent-syntax = "0.11.0"
2021-10-02 12:42:03 +02:00
fluent = "0.16.0"
2021-06-25 07:35:25 +02:00
unic-langid = { version = "0.9.0", features = ["macros"] }
2021-10-02 12:42:03 +02:00
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
inflections = "1.1.1"
[dependencies]
2021-10-02 12:42:03 +02:00
phf = { version = "0.10.0", features = ["macros"] }
fluent = "0.16.0"
num-format = "0.4.0"
2021-06-25 07:35:25 +02:00
unic-langid = { version = "0.9.0", features = ["macros"] }
2021-10-02 12:42:03 +02:00
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
2021-06-25 07:35:25 +02:00
intl-memoizer = "0.5.1"
fluent-bundle = "0.15.1"