1
1
[package ]
2
2
name = " rustpython"
3
- version = " 0.2 .0"
3
+ version = " 0.3 .0"
4
4
authors = [" RustPython Team" ]
5
5
edition = " 2021"
6
6
rust-version = " 1.67.1"
@@ -17,23 +17,23 @@ members = [
17
17
]
18
18
19
19
[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 " }
37
37
# rustpython-literal = { path = "../RustPython-parser/literal" }
38
38
# rustpython-parser-core = { path = "../RustPython-parser/core" }
39
39
# rustpython-parser = { path = "../RustPython-parser/parser" }
@@ -48,7 +48,7 @@ bitflags = "2.2.1"
48
48
bstr = " 0.2.17"
49
49
cfg-if = " 1.0"
50
50
chrono = " 0.4.19"
51
- crossbeam-utils = " 0.8.9 "
51
+ crossbeam-utils = " 0.8.16 "
52
52
flame = " 0.2.2"
53
53
glob = " 0.3"
54
54
hex = " 0.4.3"
@@ -94,11 +94,10 @@ ssl = ["rustpython-stdlib/ssl"]
94
94
ssl-vendor = [" rustpython-stdlib/ssl-vendor" ]
95
95
96
96
[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" ] }
102
101
rustpython-parser = { workspace = true }
103
102
104
103
atty = { workspace = true }
@@ -120,7 +119,7 @@ rustyline = { workspace = true }
120
119
[dev-dependencies ]
121
120
cpython = " 0.7.0"
122
121
criterion = " 0.3.5"
123
- python3-sys = " 0.7.0 "
122
+ python3-sys = " 0.7.1 "
124
123
125
124
[[bench ]]
126
125
name = " execution"
0 commit comments