Skip to content

Commit e3dcd91

Browse files
committed
clean up cargo.toml sort
1 parent 1b57f08 commit e3dcd91

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,14 @@ ssl = ["rustpython-stdlib/ssl"]
3333
ssl-vendor = ["rustpython-stdlib/ssl-vendor"]
3434

3535
[dependencies]
36-
log = "0.4.16"
37-
env_logger = { version = "0.9.0", default-features = false, features = ["atty", "termcolor"] }
38-
clap = "2.34"
3936
rustpython-compiler = { path = "compiler", version = "0.1.1" }
4037
rustpython-parser = { path = "compiler/parser", version = "0.1.1" }
4138
rustpython-vm = { path = "vm", version = "0.1.1", default-features = false, features = ["compiler"] }
4239
rustpython-stdlib = {path = "stdlib", optional = true, default-features = false}
40+
41+
log = "0.4.16"
42+
env_logger = { version = "0.9.0", default-features = false, features = ["atty", "termcolor"] }
43+
clap = "2.34"
4344
dirs = { package = "dirs-next", version = "2.0.0" }
4445
num-traits = "0.2.14"
4546
cfg-if = "1.0.0"

compiler/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ authors = ["RustPython Team"]
66
edition = "2021"
77

88
[dependencies]
9-
thiserror = "1.0"
109
rustpython-codegen = { path = "codegen" }
1110
rustpython-parser = { path = "parser" }
1211
rustpython-bytecode = { path = "bytecode" }
12+
13+
thiserror = "1.0"

jit/Cargo.toml

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

1212
[dependencies]
13+
rustpython-bytecode = { path = "../compiler/bytecode", version = "0.1.2" }
14+
1315
cranelift = "0.76.0"
1416
cranelift-module = "0.76.0"
1517
cranelift-jit = "0.76.0"
1618
num-traits = "0.2"
1719
libffi = "2.0.0"
18-
rustpython-bytecode = { path = "../compiler/bytecode", version = "0.1.2" }
1920
thiserror = "1.0"
2021

2122
[dev-dependencies]
22-
approx = "0.5.1"
2323
rustpython-derive = { path = "../derive", version = "0.1.2" }
2424

25+
approx = "0.5.1"
26+
2527
[[test]]
2628
name = "integration"
2729
path = "tests/lib.rs"

0 commit comments

Comments
 (0)