37 lines
889 B
TOML
37 lines
889 B
TOML
[package]
|
|
name = "anki_i18n"
|
|
version = "0.0.0"
|
|
authors = ["Ankitects Pty Ltd and contributors"]
|
|
build = "build/main.rs"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
description = "Anki's Rust library i18n code"
|
|
|
|
[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]
|
|
fluent-syntax = "0.11.0"
|
|
fluent = "0.16.0"
|
|
unic-langid = { version = "0.9.0", features = ["macros"] }
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
serde_json = "1.0.85"
|
|
inflections = "1.1.1"
|
|
|
|
[dependencies]
|
|
fluent = "0.16.0"
|
|
fluent-bundle = "0.15.2"
|
|
intl-memoizer = "0.5.1"
|
|
num-format = "0.4.0"
|
|
phf = { version = "0.11.1", features = ["macros"] }
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
serde_json = "1.0.85"
|
|
unic-langid = { version = "0.9.0", features = ["macros"] }
|