clean up cargo.toml sort

This commit is contained in:
Jeong YunWon
2022-08-22 06:58:28 +09:00
parent d45f3da192
commit fe6f6db72d
3 changed files with 10 additions and 6 deletions

View File

@@ -33,13 +33,14 @@ ssl = ["rustpython-stdlib/ssl"]
ssl-vendor = ["rustpython-stdlib/ssl-vendor"]
[dependencies]
log = "0.4.16"
env_logger = { version = "0.9.0", default-features = false, features = ["atty", "termcolor"] }
clap = "2.34"
rustpython-compiler = { path = "compiler", version = "0.1.1" }
rustpython-parser = { path = "compiler/parser", version = "0.1.1" }
rustpython-vm = { path = "vm", version = "0.1.1", default-features = false, features = ["compiler"] }
rustpython-stdlib = {path = "stdlib", optional = true, default-features = false}
log = "0.4.16"
env_logger = { version = "0.9.0", default-features = false, features = ["atty", "termcolor"] }
clap = "2.34"
dirs = { package = "dirs-next", version = "2.0.0" }
num-traits = "0.2.14"
cfg-if = "1.0.0"

View File

@@ -6,7 +6,8 @@ authors = ["RustPython Team"]
edition = "2021"
[dependencies]
thiserror = "1.0"
rustpython-codegen = { path = "codegen" }
rustpython-parser = { path = "parser" }
rustpython-bytecode = { path = "bytecode" }
thiserror = "1.0"

View File

@@ -10,18 +10,20 @@ edition = "2021"
autotests = false
[dependencies]
rustpython-bytecode = { path = "../compiler/bytecode", version = "0.1.2" }
cranelift = "0.76.0"
cranelift-module = "0.76.0"
cranelift-jit = "0.76.0"
num-traits = "0.2"
libffi = "2.0.0"
rustpython-bytecode = { path = "../compiler/bytecode", version = "0.1.2" }
thiserror = "1.0"
[dev-dependencies]
approx = "0.5.1"
rustpython-derive = { path = "../derive", version = "0.1.2" }
approx = "0.5.1"
[[test]]
name = "integration"
path = "tests/lib.rs"