summaryrefslogtreecommitdiff
path: root/server/Cargo.toml
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-06-08 01:43:08 +0200
committerJoel Klinghed <the_jk@spawned.biz>2025-06-08 01:44:03 +0200
commit6bd0c135a877627c2d730649824dee7d5bfa6b08 (patch)
tree66f784649904e1561078d5a964e685f0d821da01 /server/Cargo.toml
parenta60c0f58470f78545544d01d525eae481511abec (diff)
Add translation module
Reads from a list of grit files, all strings and their translations.
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r--server/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index f62a2db..894009b 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -13,6 +13,7 @@ resolver = "2"
anyhow = "1.0"
futures = "0.3.31"
log = { version = "0.4.25", features = ["release_max_level_warn"] }
+pretty_assertions = "1.4.1"
rmp-serde = "1.3"
serde = { version = "1.0", features = ["derive"] }
testdir = "0.9.3"
@@ -26,6 +27,7 @@ eyeballs-common = { path = "common" }
futures.workspace = true
ldap3 = { version = "0.11.5", default-features = false, features = [ "native-tls", "tls", "tls-native", "tokio-native-tls" ] }
log.workspace = true
+pretty_assertions.workspace = true
rmp-serde.workspace = true
rocket = { version = "0.5.1", features = ["json", "secrets"] }
rocket_db_pools = { version = "0.2.0", features = ["sqlx_mysql"] }