Skip to content

Commit d1626d8

Browse files
committed
Update dependencies
1 parent a6f214c commit d1626d8

File tree

10 files changed

+439
-381
lines changed

10 files changed

+439
-381
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ log = "0.4"
3838
quick-error = "1.0.0"
3939
collect-mac = "0.1.0"
4040
either = "1.0.0"
41-
itertools = "0.8"
41+
itertools = "0.9"
4242
futures = { version = "0.3.1", features = ["thread-pool"] }
4343
codespan = "0.9"
4444
codespan-reporting = "0.9"
@@ -61,7 +61,7 @@ native-tls = { version = "0.2", optional = true }
6161
tokio-tls = { version = "0.3", optional = true }
6262

6363
# Crates used in testing
64-
compiletest_rs = { version = "0.3.23", optional = true }
64+
compiletest_rs = { version = "0.5", optional = true }
6565

6666
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
6767
rand = { version = "0.7", optional = true }
@@ -70,7 +70,7 @@ rand_xorshift = { version = "0.2", optional = true }
7070
[build-dependencies]
7171
gluon_base = { path = "base", version = "0.15.1" } # GLUON
7272

73-
itertools = "0.8"
73+
itertools = "0.9"
7474
little-skeptic = { version = "0.15.0", optional = true }
7575
walkdir = "2"
7676

@@ -94,7 +94,7 @@ serde_derive_state = { version = "0.4.0" }
9494
serde_json = "1.0.0"
9595
bincode = "1"
9696

97-
pulldown-cmark = "0.6"
97+
pulldown-cmark = "0.7"
9898

9999
gluon_completion = { path = "completion", version = "0.15.1" } # GLUON
100100
gluon_codegen = { path = "codegen", version = "0.15.1" } # GLUON

base/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pretty = "0.10"
2525
smallvec = "0.6"
2626
collect-mac = "0.1.0"
2727
anymap = "0.12.0"
28-
itertools = "0.8"
28+
itertools = "0.9"
2929
ordered-float = "1"
3030
codespan = "0.9"
3131
codespan-reporting = "0.9"
@@ -41,7 +41,7 @@ serde_derive = { version = "1.0.0", optional = true }
4141
serde_derive_state = { version = "0.4.0", optional = true }
4242

4343
# Crates used in testing
44-
compiletest_rs = { version = "0.3.23", optional = true }
44+
compiletest_rs = { version = "0.5", optional = true }
4545

4646
[dev-dependencies]
4747
env_logger = "0.7"

check/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ travis-ci = { repository = "gluon-lang/gluon" }
1919
collect-mac = "0.1.0"
2020
ena = "0.13"
2121
log = "0.4"
22-
itertools = "0.8"
22+
itertools = "0.9"
2323
pretty = "0.10"
2424
smallvec = "0.6"
2525
rpds = "0.7"

completion/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ documentation = "https://docs.rs/gluon"
1313

1414
[dependencies]
1515
either = "1.0.0"
16-
itertools = "0.8"
16+
itertools = "0.9"
1717
walkdir = "2"
1818
codespan = "0.9"
1919

doc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ env_logger = "0.7"
1717
failure = "0.1"
1818
futures = "0.3"
1919
handlebars = "2"
20-
itertools = "0.8"
20+
itertools = "0.9"
2121
lazy_static = "1"
2222
log = "0.4"
2323
opener = "0.4"
2424
pretty = "0.10"
25-
pulldown-cmark = "0.6"
25+
pulldown-cmark = "0.7"
2626
rayon = "1"
2727
regex = "1"
2828
structopt = "0.3"

format/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ documentation = "https://docs.rs/gluon"
1414
[dependencies]
1515
log = "0.4"
1616
pretty = "0.10"
17-
itertools = "0.8"
17+
itertools = "0.9"
1818
codespan = "0.9"
1919

2020
gluon_base = { path = "../base", version = "0.15.1" } # GLUON

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ travis-ci = { repository = "gluon-lang/gluon" }
1919

2020
[dependencies]
2121
collect-mac = "0.1.0"
22-
itertools = "0.8"
22+
itertools = "0.9"
2323
quick-error = "1.0.0"
2424
lalrpop-util = "0.19"
2525
log = "0.4"

tests/main.rs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -208,16 +208,14 @@ fn gather_doc_tests(expr: &SpannedExpr<Symbol>) -> Vec<(String, String)> {
208208

209209
let mut source = String::new();
210210
loop {
211-
let content = match parser.next() {
212-
Some(pulldown_cmark::Event::Start(pulldown_cmark::Tag::CodeBlock(code))) => code,
211+
match parser.next() {
212+
Some(pulldown_cmark::Event::Start(pulldown_cmark::Tag::CodeBlock(_))) => (),
213213
None => break,
214214
_ => continue,
215-
};
216-
source.push_str(&content);
215+
}
217216
loop {
218217
match parser.next() {
219-
Some(pulldown_cmark::Event::End(pulldown_cmark::Tag::CodeBlock(content))) => {
220-
source.push_str(&content);
218+
Some(pulldown_cmark::Event::End(pulldown_cmark::Tag::CodeBlock(_))) => {
221219
break;
222220
}
223221
Some(pulldown_cmark::Event::Text(content)) => {

vm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ difference = { version = "2", optional = true }
2727
crossbeam-utils = "0.6"
2828
frunk_core = "0.3"
2929
futures = { version = "0.3.1", features = ["compat", "async-await"] }
30-
itertools = "0.8"
30+
itertools = "0.9"
3131
lalrpop-util = { version = "0.19", optional = true }
3232
log = "0.4"
3333
ordered-float = "1"

0 commit comments

Comments
 (0)