sort Cargo.toml dependencies

This commit is contained in:
Jeong YunWon 2022-08-22 07:12:10 +09:00
parent 7f99404618
commit acde8bb625
4 changed files with 7 additions and 7 deletions

View file

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

View file

@ -12,5 +12,5 @@ unparse = ["rustpython-common"]
[dependencies] [dependencies]
num-bigint = "0.4.3" num-bigint = "0.4.3"
rustpython-bytecode = { path = "../bytecode" }
rustpython-common = { path = "../../common", optional = true } rustpython-common = { path = "../../common", optional = true }
rustpython-bytecode = { path = "../bytecode"}

View file

@ -7,14 +7,13 @@ edition = "2021"
repository = "https://github.com/RustPython/RustPython" repository = "https://github.com/RustPython/RustPython"
license = "MIT" license = "MIT"
[dependencies] [dependencies]
bincode = "1.3.3" bincode = "1.3.3"
bitflags = "1.3.2" bitflags = "1.3.2"
bstr = "0.2.17"
itertools = "0.10.3"
lz4_flex = "0.9.2" lz4_flex = "0.9.2"
num-bigint = { version = "0.4.3", features = ["serde"] } num-bigint = { version = "0.4.3", features = ["serde"] }
num-complex = { version = "0.4.0", features = ["serde"] } num-complex = { version = "0.4.0", features = ["serde"] }
serde = { version = "1.0.136", features = ["derive"] } serde = { version = "1.0.136", features = ["derive"] }
itertools = "0.10.3"
bstr = "0.2.17"
static_assertions = "1.1.0" static_assertions = "1.1.0"

View file

@ -2,7 +2,7 @@
name = "rustpython-parser" name = "rustpython-parser"
version = "0.1.2" version = "0.1.2"
description = "Parser for python code." description = "Parser for python code."
authors = [ "RustPython Team" ] authors = ["RustPython Team"]
build = "build.rs" build = "build.rs"
repository = "https://github.com/RustPython/RustPython" repository = "https://github.com/RustPython/RustPython"
license = "MIT" license = "MIT"
@ -15,6 +15,8 @@ phf_codegen = "0.10"
tiny-keccak = { version = "2", features = ["sha3"] } tiny-keccak = { version = "2", features = ["sha3"] }
[dependencies] [dependencies]
rustpython-ast = { path = "../ast" }
ahash = "0.7.6" ahash = "0.7.6"
itertools = "0.10.3" itertools = "0.10.3"
lalrpop-util = "0.19.8" lalrpop-util = "0.19.8"
@ -22,7 +24,6 @@ log = "0.4.16"
num-bigint = "0.4.3" num-bigint = "0.4.3"
num-traits = "0.2.14" num-traits = "0.2.14"
phf = "0.10.1" phf = "0.10.1"
rustpython-ast = { path = "../ast" }
unic-emoji-char = "0.9.0" unic-emoji-char = "0.9.0"
unic-ucd-ident = "0.9.0" unic-ucd-ident = "0.9.0"
unicode_names2 = "0.5.0" unicode_names2 = "0.5.0"