Skip to content

Commit 7a141a5

Browse files
committed
updated dependencies
1 parent 77811e2 commit 7a141a5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ If using vscode and rust-analyzer, be sure to turn on the setting `loadOutDirsFr
4646

4747
In addition to the dependencies listed in each crate's `Cargo.toml`, the project bundles a few external dependencies such as `tmc-checkstyle-runner`, `tmc-junit-runner` and so on. When updating dependencies, you may want to check whether these projects have been updated.
4848

49+
For convenience, a tool called [cargo-outdated](https://crates.io/crates/cargo-outdated) can be installed to automatically check all the crates in the workspace for outdated dependencies. You may want to call `cargo update` first to update dependencies to the latest semver-compatible version.
50+
4951
## Versioning
5052

5153
tmc-langs-rust follows Rust-style semantic versioning, but only for the `tmc-langs-cli` and `tmc-langs` crates. Other crates may go through breaking changes in any release as long as the CLI and langs are unaffected.

plugins/python3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tmc-langs-util = { path = "../../tmc-langs-util" }
1111

1212
dunce = "1"
1313
hex = "0.4"
14-
hmac = "0.10"
14+
hmac = "0.10" # using old version until jwt updates their hmac dependency https://github.com/mikkyang/rust-jwt/pull/68
1515
log = "0.4"
1616
once_cell = "1"
1717
rand = "0.8"

tmc-langs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tmc-langs-util = { path = "../tmc-langs-util" }
1414
base64 = "0.13"
1515
dirs = "3"
1616
# heim = { version = "0.1.0-beta.3", features = ["disk"] }
17-
hmac = { version = "0.10", features = ["std"] }
17+
hmac = { version = "0.10", features = ["std"] } # using old version until jwt updates their hmac dependency https://github.com/mikkyang/rust-jwt/pull/68
1818
impl-enum = "0.2"
1919
jwt = "0.13"
2020
log = "0.4"
@@ -37,7 +37,7 @@ toml = "0.5"
3737
url = "2"
3838
walkdir = "2"
3939
zip = "0.5"
40-
zstd = "0.7"
40+
zstd = "0.8"
4141

4242
[target.'cfg(unix)'.dependencies]
4343
nix = "0.20"

0 commit comments

Comments
 (0)