Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
+ Bump rust-embed to ^6.3 addressing RUSTSEC-2021-0126
+ Bump dashmap to ^5.1
+ Bump i18n-embed-fl to 0.6.4
+ Bump i18n-embed to 0.13.3
+ Bump i18n-build to 0.8.2
+ Bump cargo-i18n to 0.2.10
  • Loading branch information
kellpossible committed Feb 10, 2022
1 parent 4b1b1ca commit ae222f3
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 16 deletions.
13 changes: 7 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
name = "cargo-i18n"
readme = "README.md"
repository = "https://github.com/kellpossible/cargo-i18n"
version = "0.2.9"
version = "0.2.10"

[badges]
maintenance = { status = "actively-developed" }
Expand All @@ -23,7 +23,7 @@ anyhow = "1.0"
gettext = "0.4"
tr = { version = "0.1", default-features = false, features = ["gettext"] }
clap = { version = "3.0", features = ["cargo"] }
rust-embed = "6"
rust-embed = "^6.3"
unic-langid = "0.9"
env_logger = "0.9"
log = "0.4"
Expand Down
4 changes: 4 additions & 0 deletions i18n-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for `i18n-build`

## v0.8.2

+ Update `rust-embed` to `6.3` to address [RUSTSEC-2021-0126](https://rustsec.org/advisories/RUSTSEC-2021-0126.html).

## v0.8.1

+ French translations provided by Christophe Chauvet.
Expand Down
6 changes: 3 additions & 3 deletions i18n-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
name = "i18n-build"
readme = "README.md"
repository = "https://github.com/kellpossible/cargo-i18n/tree/master/i18n-build"
version = "0.8.1"
version = "0.8.2"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -28,11 +28,11 @@ i18n-embed = { version = "0.13", path = "../i18n-embed", features = ["gettext-sy
i18n-config = { version = "0.4", path = "../i18n-config" }
gettext = { version = "0.4", optional = true }
log = "0.4"
rust-embed = "6"
rust-embed = "^6.3"
lazy_static = { version = "1.4.0", optional = true }

[features]
default = []

# A feature to localize this library
localize = ["i18n-embed", "gettext", "lazy_static"]
localize = ["i18n-embed", "gettext", "lazy_static"]
5 changes: 5 additions & 0 deletions i18n-embed-fl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog for `i18n-embed-fl`

## v0.6.4

+ Update `dashmap` to version `5.1`.
+ Update `rust-embed` to `6.3` to address [RUSTSEC-2021-0126](https://rustsec.org/advisories/RUSTSEC-2021-0126.html).

## v0.6.3

+ Revert `dashmap` back to `4.0` due to [security warning](https://rustsec.org/advisories/RUSTSEC-2022-0002.html)
Expand Down
6 changes: 3 additions & 3 deletions i18n-embed-fl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3"
version = "0.6.4"
authors = ["Luke Frisken <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -12,7 +12,7 @@ exclude = ["i18n.toml", "i18n/"]
proc-macro = true

[dependencies]
dashmap = "4.0"
dashmap = "^5.1"
find-crate = "0.6"
fluent = "0.16"
fluent-syntax = "0.11"
Expand All @@ -34,4 +34,4 @@ features = ["derive", "proc-macro", "parsing", "printing", "extra-traits", "full
doc-comment = "0.3"
env_logger = "0.9"
pretty_assertions = "1.1"
rust-embed = "6"
rust-embed = "^6.3"
4 changes: 4 additions & 0 deletions i18n-embed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for `i18n-embed`

## v0.13.3

+ Update `rust-embed` to `6.3` to address [RUSTSEC-2021-0126](https://rustsec.org/advisories/RUSTSEC-2021-0126.html).

## v0.13.2

### Internal
Expand Down
4 changes: 2 additions & 2 deletions i18n-embed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
name = "i18n-embed"
readme = "README.md"
repository = "https://github.com/kellpossible/cargo-i18n/tree/master/i18n-embed"
version = "0.13.2"
version = "0.13.3"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -28,7 +28,7 @@ lazy_static = "1.4"
locale_config = { version = "0.3", optional = true }
log = "0.4"
parking_lot = { version = "0.12", optional = true }
rust-embed = { version = "6", optional = true }
rust-embed = { version = "^6.3", optional = true }
thiserror = "1"
tr = { version = "0.1", default-features = false, optional = true }
unic-langid = "0.9"
Expand Down

0 comments on commit ae222f3

Please sign in to comment.