Skip to content

Commit a9f8f18

Browse files
committed
update tuesday
1 parent abca979 commit a9f8f18

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

plugins/r/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ serde_json = "1"
1313
serde = { version = "1", features = ["derive"] }
1414

1515
[dev-dependencies]
16-
env_logger = "0.7"
16+
env_logger = "0.8"
1717
walkdir = "2"
1818
tempfile = "3"

tmc-langs-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tmc-langs-cli"
3-
version = "0.6.1"
3+
version = "0.6.5"
44
authors = ["University of Helsinki <mooc@cs.helsinki.fi>", "Daniel Martinez <daniel.x.martinez@helsinki.fi>"]
55
edition = "2018"
66
description = "CLI client for TMC"

tmc-langs-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ walkdir = "2"
2525

2626
[dev-dependencies]
2727
env_logger = "0.8"
28-
mockito = "0.27"
28+
mockito = "0.28"
2929
dotenv = "0.15"

tmc-langs-framework/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ serde_yaml = "0.8"
1717
zip = "0.5"
1818
schemars = "0.8"
1919
once_cell = "1"
20-
nom = "5"
20+
nom = "6"
2121
subprocess = "0.2"
2222
tempfile = "3"
2323
anyhow = "1"

tmc-langs-framework/src/plugin.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ pub trait LanguagePlugin {
464464
bytes::complete::is_not("\n"),
465465
),
466466
);
467-
let block_comment_parser: Box<dyn Fn(_) -> _> =
467+
let block_comment_parser: Box<dyn FnMut(_) -> _> =
468468
if let Some(block_comment) = Self::BLOCK_COMMENT {
469469
Box::new(combinator::value(
470470
Parse::BlockComment,
@@ -482,7 +482,7 @@ pub trait LanguagePlugin {
482482
let points_parser =
483483
combinator::map(Self::points_parser, |p| Parse::Points(p.to_string()));
484484

485-
let parser = multi::many0(multi::many_till(
485+
let mut parser = multi::many0(multi::many_till(
486486
etc_parser,
487487
branch::alt((line_comment_parser, block_comment_parser, points_parser)),
488488
));

tmc-langs-util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ schemars = "0.8"
3333
nix = "0.19"
3434

3535
[dev-dependencies]
36-
env_logger = "0.7"
36+
env_logger = "0.8"

0 commit comments

Comments
 (0)