Skip to content

Commit ae222f3

Browse files
committed
Bump dependencies
+ 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
1 parent 4b1b1ca commit ae222f3

File tree

8 files changed

+30
-16
lines changed

8 files changed

+30
-16
lines changed

Cargo.lock

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "cargo-i18n"
99
readme = "README.md"
1010
repository = "https://github.com/kellpossible/cargo-i18n"
11-
version = "0.2.9"
11+
version = "0.2.10"
1212

1313
[badges]
1414
maintenance = { status = "actively-developed" }
@@ -23,7 +23,7 @@ anyhow = "1.0"
2323
gettext = "0.4"
2424
tr = { version = "0.1", default-features = false, features = ["gettext"] }
2525
clap = { version = "3.0", features = ["cargo"] }
26-
rust-embed = "6"
26+
rust-embed = "^6.3"
2727
unic-langid = "0.9"
2828
env_logger = "0.9"
2929
log = "0.4"

i18n-build/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog for `i18n-build`
22

3+
## v0.8.2
4+
5+
+ Update `rust-embed` to `6.3` to address [RUSTSEC-2021-0126](https://rustsec.org/advisories/RUSTSEC-2021-0126.html).
6+
37
## v0.8.1
48

59
+ French translations provided by Christophe Chauvet.

i18n-build/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "i18n-build"
99
readme = "README.md"
1010
repository = "https://github.com/kellpossible/cargo-i18n/tree/master/i18n-build"
11-
version = "0.8.1"
11+
version = "0.8.2"
1212

1313
[package.metadata.docs.rs]
1414
all-features = true
@@ -28,11 +28,11 @@ i18n-embed = { version = "0.13", path = "../i18n-embed", features = ["gettext-sy
2828
i18n-config = { version = "0.4", path = "../i18n-config" }
2929
gettext = { version = "0.4", optional = true }
3030
log = "0.4"
31-
rust-embed = "6"
31+
rust-embed = "^6.3"
3232
lazy_static = { version = "1.4.0", optional = true }
3333

3434
[features]
3535
default = []
3636

3737
# A feature to localize this library
38-
localize = ["i18n-embed", "gettext", "lazy_static"]
38+
localize = ["i18n-embed", "gettext", "lazy_static"]

i18n-embed-fl/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog for `i18n-embed-fl`
22

3+
## v0.6.4
4+
5+
+ Update `dashmap` to version `5.1`.
6+
+ Update `rust-embed` to `6.3` to address [RUSTSEC-2021-0126](https://rustsec.org/advisories/RUSTSEC-2021-0126.html).
7+
38
## v0.6.3
49

510
+ Revert `dashmap` back to `4.0` due to [security warning](https://rustsec.org/advisories/RUSTSEC-2022-0002.html)

i18n-embed-fl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "i18n-embed-fl"
33
description = "Macro to perform compile time checks when using the i18n-embed crate and the fluent localization system"
44
categories = ["localization", "internationalization", "development-tools"]
5-
version = "0.6.3"
5+
version = "0.6.4"
66
authors = ["Luke Frisken <[email protected]>"]
77
edition = "2018"
88
license = "MIT"
@@ -12,7 +12,7 @@ exclude = ["i18n.toml", "i18n/"]
1212
proc-macro = true
1313

1414
[dependencies]
15-
dashmap = "4.0"
15+
dashmap = "^5.1"
1616
find-crate = "0.6"
1717
fluent = "0.16"
1818
fluent-syntax = "0.11"
@@ -34,4 +34,4 @@ features = ["derive", "proc-macro", "parsing", "printing", "extra-traits", "full
3434
doc-comment = "0.3"
3535
env_logger = "0.9"
3636
pretty_assertions = "1.1"
37-
rust-embed = "6"
37+
rust-embed = "^6.3"

i18n-embed/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog for `i18n-embed`
22

3+
## v0.13.3
4+
5+
+ Update `rust-embed` to `6.3` to address [RUSTSEC-2021-0126](https://rustsec.org/advisories/RUSTSEC-2021-0126.html).
6+
37
## v0.13.2
48

59
### Internal

i18n-embed/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "i18n-embed"
1010
readme = "README.md"
1111
repository = "https://github.com/kellpossible/cargo-i18n/tree/master/i18n-embed"
12-
version = "0.13.2"
12+
version = "0.13.3"
1313

1414
[package.metadata.docs.rs]
1515
all-features = true
@@ -28,7 +28,7 @@ lazy_static = "1.4"
2828
locale_config = { version = "0.3", optional = true }
2929
log = "0.4"
3030
parking_lot = { version = "0.12", optional = true }
31-
rust-embed = { version = "6", optional = true }
31+
rust-embed = { version = "^6.3", optional = true }
3232
thiserror = "1"
3333
tr = { version = "0.1", default-features = false, optional = true }
3434
unic-langid = "0.9"

0 commit comments

Comments
 (0)