diff --git a/Cargo.lock b/Cargo.lock index 983ba4a..468be19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3112,12 +3112,11 @@ dependencies = [ [[package]] name = "rust-i18n" -version = "3.1.5" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fda2551fdfaf6cc5ee283adc15e157047b92ae6535cf80f6d4962d05717dc332" +checksum = "55691a65892c33ee2de49c15ea5600c6f4a70e8eeb8e6c3cd96d2a231d230c40" dependencies = [ "globwalk 0.8.1", - "once_cell", "regex", "rust-i18n-macro", "rust-i18n-support", @@ -3126,12 +3125,11 @@ dependencies = [ [[package]] name = "rust-i18n-macro" -version = "3.1.5" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22baf7d7f56656d23ebe24f6bb57a5d40d2bce2a5f1c503e692b5b2fa450f965" +checksum = "30de488acadcf767d97cd48518a8da8ea9777b1c9a5beca4eab78bbf77d07309" dependencies = [ "glob", - "once_cell", "proc-macro2", "quote", "rust-i18n-support", @@ -3143,19 +3141,15 @@ dependencies = [ [[package]] name = "rust-i18n-support" -version = "3.1.5" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "940ed4f52bba4c0152056d771e563b7133ad9607d4384af016a134b58d758f19" +checksum = "aea0fef8a93c06326b66392c95a115120e609674cb2132d37d276a6b05b545b4" dependencies = [ "arc-swap", "base62", "globwalk 0.8.1", "itertools 0.11.0", - "lazy_static", "normpath", - "once_cell", - "proc-macro2", - "regex", "serde", "serde_json", "serde_yaml", diff --git a/crates/rustapi-validate/Cargo.toml b/crates/rustapi-validate/Cargo.toml index d657c46..7e2d03c 100644 --- a/crates/rustapi-validate/Cargo.toml +++ b/crates/rustapi-validate/Cargo.toml @@ -26,7 +26,7 @@ async-trait = { workspace = true } regex = "1.10" # Internationalization -rust-i18n = "3.0" +rust-i18n = "4.1" # Re-export derive macro rustapi-macros = { workspace = true } @@ -34,5 +34,5 @@ rustapi-macros = { workspace = true } [dev-dependencies] tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } proptest = "1.4" -rust-i18n = "3.0" +rust-i18n = "4.1" rustapi-core = { workspace = true, default-features = false }