Skip to content

Commit 25ecd7c

Browse files
committed
Upgrade dependencies
1 parent 9b0a86d commit 25ecd7c

File tree

14 files changed

+204
-182
lines changed

14 files changed

+204
-182
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ ssl = ["rustpython-vm/ssl"]
2626

2727
[dependencies]
2828
log = "0.4"
29-
env_logger = "0.7"
29+
env_logger = "0.8.3"
3030
clap = "2.33"
3131
rustpython-compiler = { path = "compiler/porcelain", version = "0.1.1" }
3232
rustpython-parser = { path = "parser", version = "0.1.1" }
3333
rustpython-vm = { path = "vm", version = "0.1.1", default-features = false, features = ["compile-parse"] }
3434
pylib = { package = "rustpython-pylib", path = "vm/pylib-crate", version = "0.1.0", default-features = false, optional = true }
35-
dirs = { package = "dirs-next", version = "1.0" }
35+
dirs = { package = "dirs-next", version = "2.0.0" }
3636
num-traits = "0.2.8"
3737
cfg-if = "1.0"
3838
libc = "0.2"

ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ authors = ["RustPython Team"]
55
edition = "2018"
66

77
[dependencies]
8-
num-bigint = "0.3"
8+
num-bigint = "0.4.0"

bytecode/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ license = "MIT"
1212
bincode = "1.1"
1313
bitflags = "1.1"
1414
lz4_flex = "0.7"
15-
num-bigint = { version = "0.3", features = ["serde"] }
16-
num-complex = { version = "0.3", features = ["serde"] }
15+
num-bigint = { version = "0.4.0", features = ["serde"] }
16+
num-complex = { version = "0.4.0", features = ["serde"] }
1717
serde = { version = "1.0", features = ["derive"] }
18-
itertools = "0.9"
18+
itertools = "0.10.0"
1919
bstr = "0.2"

common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ threading = ["parking_lot"]
1111
lock_api = "0.4"
1212
parking_lot = { version = "0.11.0", optional = true }
1313
num-traits = "0.2"
14-
num-complex = "0.3"
15-
num-bigint = "0.3"
14+
num-complex = "0.4.0"
15+
num-bigint = "0.4.0"
1616
lexical-core = "0.7"
1717
hexf-parse = "0.1.0"
1818
cfg-if = "1.0"

compiler/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ edition = "2018"
99

1010
[dependencies]
1111
indexmap = "1.0"
12-
itertools = "0.9"
12+
itertools = "0.10.0"
1313
rustpython-bytecode = { path = "../bytecode", version = "0.1.1" }
1414
rustpython-ast = { path = "../ast" }
15-
num-complex = { version = "0.3", features = ["serde"] }
15+
num-complex = { version = "0.4.0", features = ["serde"] }
1616
num-traits = "0.2"
1717
log = "0.4"
18-
ahash = "0.6"
18+
ahash = "0.7.2"
1919

2020
[dev-dependencies]
2121
rustpython-parser = { path = "../parser" }
22-
insta = "1.5"
22+
insta = "1.7.0"

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ rustpython-compiler = { path = "../compiler/porcelain", version = "0.1.1" }
1919
rustpython-bytecode = { path = "../bytecode", version = "0.1.1" }
2020
maplit = "1.0"
2121
once_cell = "1.3.1"
22-
textwrap = "0.12.1"
22+
textwrap = "0.13.4"
2323
indexmap = "^1"

jit/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ edition = "2018"
1010
autotests = false
1111

1212
[dependencies]
13-
cranelift = "0.69.0"
14-
cranelift-module = "0.69.0"
15-
cranelift-jit = "0.69.0"
13+
cranelift = "0.72.0"
14+
cranelift-module = "0.72.0"
15+
cranelift-jit = "0.72.0"
1616
num-traits = "0.2"
1717
libffi = "1.0"
1818
rustpython-bytecode = { path = "../bytecode", version = "0.1.2" }
1919
thiserror = "1.0"
2020

2121
[dev-dependencies]
22-
approx = "0.3.2"
22+
approx = "0.4.0"
2323
rustpython-derive = { path = "../derive", version = "0.1.2" }
2424

2525
[[test]]

parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ lalrpop = "0.19"
1515
rustpython-ast = { path = "../ast" }
1616
lalrpop-util = "0.19.1"
1717
log = "0.4.1"
18-
num-bigint = "0.3"
18+
num-bigint = "0.4.0"
1919
num-traits = "0.2"
2020
unic-emoji-char = "0.9"
2121
unic-ucd-ident = "0.9"
2222
unicode_names2 = "0.4"
2323
phf = { version = "0.8", features = ["macros"] }
24-
ahash = "0.6"
24+
ahash = "0.7.2"
2525

2626
[dev-dependencies]
2727
insta = "1.5"

src/shell/helper.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,9 @@ cfg_if::cfg_if! {
163163
.unwrap_or_else(|| (line.len(), vec!["\t".to_owned()])))
164164
}
165165
}
166+
166167
impl Hinter for ShellHelper<'_> {
167-
type Hint = String;
168+
type Hint = String;
168169
}
169170
impl Highlighter for ShellHelper<'_> {}
170171
impl Validator for ShellHelper<'_> {}

0 commit comments

Comments
 (0)