11[package ]
22name =" rustpython"
3- version =" 0.2 .0"
3+ version =" 0.3 .0"
44authors = [" RustPython Team" ]
55edition =" 2021"
66rust-version =" 1.67.1"
@@ -17,23 +17,23 @@ members = [
1717]
1818
1919[workspace .dependencies ]
20- rustpython-compiler-core = {path =" compiler/core" }
21- rustpython-compiler = {path =" compiler" }
22- rustpython-codegen = {path =" compiler/codegen" }
23- rustpython-common = {path =" common" }
24- rustpython-derive = {path =" derive" }
25- rustpython-derive-impl = {path =" derive-impl" }
26- rustpython-jit = {path =" jit" }
27- rustpython-vm = {path =" vm" }
28- rustpython-pylib = {path =" pylib" }
29- rustpython-stdlib = {path =" stdlib" }
30- rustpython-doc = {git =" https://github.com/RustPython/__doc__" ,branch =" main " }
31-
32- rustpython-literal = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" }
33- rustpython-parser-core = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" }
34- rustpython-parser = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" }
35- rustpython-ast = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" }
36- rustpython-format = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" }
20+ rustpython-compiler-core = {path =" compiler/core" , version = " 0.3.0 " }
21+ rustpython-compiler = {path =" compiler" , version = " 0.3.0 " }
22+ rustpython-codegen = {path =" compiler/codegen" , version = " 0.3.0 " }
23+ rustpython-common = {path =" common" , version = " 0.3.0 " }
24+ rustpython-derive = {path =" derive" , version = " 0.3.0 " }
25+ rustpython-derive-impl = {path =" derive-impl" , version = " 0.3.0 " }
26+ rustpython-jit = {path =" jit" , version = " 0.3.0 " }
27+ rustpython-vm = {path =" vm" , version = " 0.3.0 " }
28+ rustpython-pylib = {path =" pylib" , version = " 0.3.0 " }
29+ rustpython-stdlib = {path =" stdlib" , version = " 0.3.0 " }
30+ rustpython-doc = {git =" https://github.com/RustPython/__doc__" ,tag =" 0.3.0 " , version = " 0.3.0 " }
31+
32+ rustpython-literal = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" , version = " 0.3.0 " }
33+ rustpython-parser-core = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" , version = " 0.3.0 " }
34+ rustpython-parser = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" , version = " 0.3.0 " }
35+ rustpython-ast = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" , version = " 0.3.0 " }
36+ rustpython-format = {git =" https://github.com/RustPython/Parser.git" ,tag =" 0.3.0" , version = " 0.3.0 " }
3737# rustpython-literal = { path = "../RustPython-parser/literal" }
3838# rustpython-parser-core = { path = "../RustPython-parser/core" }
3939# rustpython-parser = { path = "../RustPython-parser/parser" }
@@ -48,7 +48,7 @@ bitflags = "2.2.1"
4848bstr =" 0.2.17"
4949cfg-if =" 1.0"
5050chrono =" 0.4.19"
51- crossbeam-utils =" 0.8.9 "
51+ crossbeam-utils =" 0.8.16 "
5252flame =" 0.2.2"
5353glob =" 0.3"
5454hex =" 0.4.3"
@@ -94,11 +94,10 @@ ssl = ["rustpython-stdlib/ssl"]
9494ssl-vendor = [" rustpython-stdlib/ssl-vendor" ]
9595
9696[dependencies ]
97- rustpython-compiler = {path =" compiler" ,version =" 0.2.0" }
98- rustpython-pylib = {path =" pylib" ,optional =true ,default-features =false }
99- rustpython-stdlib = {path =" stdlib" ,optional =true ,default-features =false }
100- rustpython-vm = {path =" vm" ,version =" 0.2.0" ,default-features =false ,features = [" compiler" ] }
101-
97+ rustpython-compiler = {workspace =true }
98+ rustpython-pylib = {workspace =true ,optional =true }
99+ rustpython-stdlib = {workspace =true ,optional =true }
100+ rustpython-vm = {workspace =true ,default-features =false ,features = [" compiler" ] }
102101rustpython-parser = {workspace =true }
103102
104103atty = {workspace =true }
@@ -120,7 +119,7 @@ rustyline = { workspace = true }
120119[dev-dependencies ]
121120cpython =" 0.7.0"
122121criterion =" 0.3.5"
123- python3-sys =" 0.7.0 "
122+ python3-sys =" 0.7.1 "
124123
125124[[bench ]]
126125name =" execution"