Skip to content

Commit 93e4bae

Browse files
committed
Updated deps
1 parent f10c308 commit 93e4bae

File tree

8 files changed

+259
-279
lines changed

8 files changed

+259
-279
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ tmc-langs-util = { path = "crates/tmc-langs-util" }
3939
tmc-mooc-client = { path = "crates/tmc-mooc-client" }
4040
tmc-server-mock = { path = "crates/helpers/tmc-server-mock" }
4141
tmc-testmycode-client = { path = "crates/tmc-testmycode-client" }
42-
ts-rs = { git = "https://github.com/Heliozoa/ts-rs.git", rev = "043c49c461543367d702e4db503f793f1ba801c2" }
42+
ts-rs = { git = "https://github.com/Heliozoa/ts-rs.git", rev = "a08135ffad38a8fce2b9501b344d96e609f2c46f" }
4343

4444
# [patch.'https://github.com/Heliozoa/ts-rs.git']
4545
# ts-rs = { path = "../ts-rs/ts-rs" }

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.16.0" # specific version to match the jar
15+
j4rs = "=0.17.1" # 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.16.0-jar-with-dependencies.jar renamed to crates/plugins/java/deps/j4rs-0.17.1-jar-with-dependencies.jar

3.02 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.16.0-jar-with-dependencies.jar");
32+
const J4RS_BYTES: &[u8] = include_bytes!("../deps/j4rs-0.17.1-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
@@ -25,7 +25,7 @@ serde = "1.0.136"
2525
serde_json = "1.0.78"
2626
tempfile = "3.3.0"
2727
thiserror = "1.0.30"
28-
toml = "0.7.2"
28+
toml = "0.8.2"
2929
url = "2.2.2"
3030
uuid = { version = "1.3.4", features = ["v4"] }
3131
walkdir = "2.3.2"

crates/tmc-langs-util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde_path_to_error = "0.1.7"
2020
serde_yaml = "0.9.10"
2121
tempfile = "3.3.0"
2222
thiserror = "1.0.30"
23-
toml = "0.7.2"
23+
toml = "0.8.2"
2424
type-map = "0.5.0"
2525
walkdir = "2.3.2"
2626

crates/tmc-langs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ shellwords = "1.1.0"
3838
tar = "0.4.38"
3939
tempfile = "3.3.0"
4040
thiserror = "1.0.30"
41-
toml = "0.7.2"
41+
toml = "0.8.2"
4242
url = "2.2.2"
4343
uuid = { version = "1.3.4", features = ["v4"] }
4444
walkdir = "2.3.2"
4545
zip = "0.6.3"
4646
zstd = "0.12.3"
4747

4848
[target.'cfg(unix)'.dependencies]
49-
nix = "0.26.2"
49+
nix = { version = "0.27.1", features = ["fs"] }
5050

5151
[dev-dependencies]
5252
chrono = "0.4.19"

0 commit comments

Comments
 (0)