-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release new version of i18n-embed and i18n-embed-fl
- Bump i18n-embed to 0.13.5 - Bump i18n-embed-fl to 0.6.5 (requiring i18n-embed >=0.13.5) - Fix clippy lints
- Loading branch information
Luke Frisken
committed
Jan 9, 2023
1 parent
4b4d35f
commit 46f08a2
Showing
16 changed files
with
123 additions
and
99 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -191,6 +191,6 @@ impl Display for PathError { | |
), | ||
}; | ||
|
||
write!(f, "{}", message) | ||
write!(f, "{message}") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "i18n-embed-fl" | ||
description = "Macro to perform compile time checks when using the i18n-embed crate and the fluent localization system" | ||
categories = ["localization", "internationalization", "development-tools"] | ||
version = "0.6.4" | ||
version = "0.6.5" | ||
authors = ["Luke Frisken <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -17,7 +17,7 @@ find-crate = "0.6" | |
fluent = "0.16" | ||
fluent-syntax = "0.11" | ||
i18n-config = { path = "../i18n-config", version = "0.4" } | ||
i18n-embed = { path = "../i18n-embed", version = "0.13", features = ["fluent-system", "filesystem-assets"]} | ||
i18n-embed = { path = "../i18n-embed", version = "0.13.5", features = ["fluent-system", "filesystem-assets"]} | ||
lazy_static = "1.4" | ||
proc-macro2 = "1.0" | ||
proc-macro-error = "1.0" | ||
|
@@ -32,6 +32,6 @@ features = ["derive", "proc-macro", "parsing", "printing", "extra-traits", "full | |
|
||
[dev-dependencies] | ||
doc-comment = "0.3" | ||
env_logger = "0.9" | ||
env_logger = "0.10" | ||
pretty_assertions = "1.1" | ||
rust-embed = "^6.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.