Skip to content

Commit 47171d9

Browse files
committed
Updated deps
1 parent 9c9b2a3 commit 47171d9

File tree

9 files changed

+165
-179
lines changed

9 files changed

+165
-179
lines changed

Cargo.lock

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

crates/bindings/tmc-langs-node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ version = "0.10.0"
2020
tmc-langs = { workspace = true, features = ["ts-rs"] }
2121

2222
base64 = "0.21.0"
23-
env_logger = "0.10.0"
23+
env_logger = "0.11.2"
2424
serde = "1.0.136"
2525
serde_json = "1.0.78"
2626
thiserror = "1.0.30"

crates/plugins/java/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tmc-langs-util.workspace = true
1212

1313
dirs = "5.0.1"
1414
flate2 = "1.0.22"
15-
j4rs = "=0.17.1" # specific version to match the jar
15+
j4rs = "=0.17.2" # specific version to match the jar
1616
log = "0.4.14"
1717
once_cell = "1.9.0"
1818
serde = { version = "1.0.136", features = ["derive"] }

crates/plugins/java/deps/j4rs-0.17.1-jar-with-dependencies.jar renamed to crates/plugins/java/deps/j4rs-0.17.2-jar-with-dependencies.jar

2.18 MB
Binary file not shown.

crates/plugins/java/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const SEPARATOR: &str = ":";
2929
const TMC_JUNIT_RUNNER_BYTES: &[u8] = include_bytes!("../deps/tmc-junit-runner-0.2.8.jar");
3030
const TMC_CHECKSTYLE_RUNNER_BYTES: &[u8] =
3131
include_bytes!("../deps/tmc-checkstyle-runner-3.0.3-20200520.064542-3.jar");
32-
const J4RS_BYTES: &[u8] = include_bytes!("../deps/j4rs-0.17.1-jar-with-dependencies.jar");
32+
const J4RS_BYTES: &[u8] = include_bytes!("../deps/j4rs-0.17.2-jar-with-dependencies.jar");
3333

3434
struct JvmWrapper {
3535
jvm: Jvm,

crates/tmc-langs-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ anyhow = { version = "1.0.53", features = ["backtrace"] }
1717
base64 = "0.21.0"
1818
clap = { version = "4.0.7", features = ["derive"] }
1919
dirs = "5.0.1"
20-
env_logger = "0.10.0"
20+
env_logger = "0.11.2"
2121
log = "0.4.14"
2222
rpassword = "7.0.0"
2323
schemars = "0.8.8"

crates/tmc-langs-framework/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ tempfile = "3.3.0"
2525
thiserror = "1.0.30"
2626
walkdir = "2.3.2"
2727
zip = "0.6.3"
28-
zstd = "0.12.3"
28+
zstd = "0.13.0"
2929

3030
[dev-dependencies]
3131
simple_logger = "4.0.0"

crates/tmc-langs-plugins/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ tar = "0.4.38"
2323
thiserror = "1.0.30"
2424
walkdir = "2.3.2"
2525
zip = "0.6.3"
26-
zstd = "0.12.3"
26+
zstd = "0.13.0"
2727

2828
[dev-dependencies]
2929
simple_logger = "4.0.0"

crates/tmc-langs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ url = "2.2.2"
4343
uuid = { version = "1.3.4", features = ["v4"] }
4444
walkdir = "2.3.2"
4545
zip = "0.6.3"
46-
zstd = "0.12.3"
46+
zstd = "0.13.0"
4747

4848
[target.'cfg(unix)'.dependencies]
4949
nix = { version = "0.27.1", features = ["fs"] }

0 commit comments

Comments
 (0)