Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
221 changes: 221 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion crates/ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,16 @@ axum-htmx = { version = "0.8", features = ["auto-vary"] }
rust-embed = "8"
axum-embed = "0.1"

# Fluent message catalogs (locales/<locale>/main.ftl at the workspace root),
# embedded at compile time — same no-runtime-dependency stance as the assets.
# See docs/multi-language.md for the i18n rules of the road.
fluent-templates = "0.13"
unic-langid = { version = "0.9", features = ["macros"] }

[dev-dependencies]
# Drive the mounted router end-to-end (routes, middleware, fallback) in tests.
# Parses the .ftl sources so tests can enforce key-set parity across locales.
fluent-syntax = "0.11"
# Drive the mounted router end-to-end (locale middleware included) in tests.
tokio = { version = "1", features = ["macros", "rt"] }
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"
Loading