Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc7faae9

Browse files
committed
Bump all crate versions to 0.2.0
1 parentc38babe commitc7faae9

File tree

16 files changed

+56
-50
lines changed

16 files changed

+56
-50
lines changed

‎Cargo.lock‎

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎Cargo.toml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# REDOX END
44
[package]
55
name ="rustpython"
6-
version ="0.1.2"
6+
version ="0.2.0"
77
authors = ["RustPython Team"]
88
edition ="2021"
99
description ="A python interpreter written in rust."
@@ -33,11 +33,11 @@ ssl = ["rustpython-stdlib/ssl"]
3333
ssl-vendor = ["rustpython-stdlib/ssl-vendor"]
3434

3535
[dependencies]
36-
rustpython-compiler = {path ="compiler",version ="0.1.1" }
37-
rustpython-parser = {path ="compiler/parser",version ="0.1.1" }
36+
rustpython-compiler = {path ="compiler",version ="0.2.0" }
37+
rustpython-parser = {path ="compiler/parser",version ="0.2.0" }
3838
rustpython-pylib = {path ="pylib",optional =true,default-features =false }
3939
rustpython-stdlib = {path ="stdlib",optional =true,default-features =false }
40-
rustpython-vm = {path ="vm",version ="0.1.1",default-features =false,features = ["compiler"] }
40+
rustpython-vm = {path ="vm",version ="0.2.0",default-features =false,features = ["compiler"] }
4141

4242
cfg-if ="1.0.0"
4343
clap ="2.34"

‎common/Cargo.toml‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name ="rustpython-common"
3-
version ="0.0.0"
3+
version ="0.2.0"
4+
description ="General python functions and algorithms for use in RustPython"
45
authors = ["RustPython Team"]
56
edition ="2021"
7+
repository ="https://github.com/RustPython/RustPython"
8+
license ="MIT"
69

710
[features]
811
threading = ["parking_lot"]

‎compiler/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name ="rustpython-compiler"
3-
version ="0.1.2"
3+
version ="0.2.0"
44
description ="A usability wrapper around rustpython-parser and rustpython-compiler-core"
55
authors = ["RustPython Team"]
66
edition ="2021"

‎compiler/ast/Cargo.toml‎

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name ="rustpython-ast"
3-
version ="0.1.0"
3+
version ="0.2.0"
4+
description ="AST definitions for RustPython"
45
authors = ["RustPython Team"]
56
edition ="2021"
7+
repository ="https://github.com/RustPython/RustPython"
8+
license ="MIT"
69

710
[features]
811
default = ["constant-optimization","fold"]
@@ -12,5 +15,5 @@ unparse = ["rustpython-common"]
1215

1316
[dependencies]
1417
num-bigint ="0.4.3"
15-
rustpython-compiler-core = {path ="../core" }
16-
rustpython-common = {path ="../../common",optional =true }
18+
rustpython-compiler-core = {path ="../core",version ="0.2.0" }
19+
rustpython-common = {path ="../../common",version ="0.2.0",optional =true }

‎compiler/codegen/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name ="rustpython-codegen"
3-
version ="0.1.2"
3+
version ="0.2.0"
44
description ="Compiler for python code into bytecode for the rustpython VM."
55
authors = ["RustPython Team"]
66
repository ="https://github.com/RustPython/RustPython"
@@ -9,7 +9,7 @@ edition = "2021"
99

1010
[dependencies]
1111
rustpython-ast = {path ="../ast",features = ["unparse"] }
12-
rustpython-compiler-core = {path ="../core",version ="0.1.1" }
12+
rustpython-compiler-core = {path ="../core",version ="0.2.0" }
1313

1414
ahash ="0.7.6"
1515
bitflags ="1.3.2"

‎compiler/core/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name ="rustpython-compiler-core"
33
description ="RustPython specific bytecode."
4-
version ="0.1.2"
4+
version ="0.2.0"
55
authors = ["RustPython Team"]
66
edition ="2021"
77
repository ="https://github.com/RustPython/RustPython"

‎compiler/parser/Cargo.toml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name ="rustpython-parser"
3-
version ="0.1.2"
3+
version ="0.2.0"
44
description ="Parser for python code."
55
authors = ["RustPython Team"]
66
build ="build.rs"
@@ -18,8 +18,8 @@ phf_codegen = "0.10"
1818
tiny-keccak = {version ="2",features = ["sha3"] }
1919

2020
[dependencies]
21-
rustpython-ast = {path ="../ast" }
22-
rustpython-compiler-core = {path ="../core" }
21+
rustpython-ast = {path ="../ast",version ="0.2.0" }
22+
rustpython-compiler-core = {path ="../core",version ="0.2.0" }
2323

2424
ahash ="0.7.6"
2525
itertools ="0.10.3"

‎derive-impl/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name ="rustpython-derive-impl"
3-
version ="0.0.0"
3+
version ="0.2.0"
44
edition ="2021"
55

66
[dependencies]
7-
rustpython-compiler-core = {path ="../compiler/core",version ="0.1.1" }
7+
rustpython-compiler-core = {path ="../compiler/core",version ="0.2.0" }
88
rustpython-doc = {git ="https://github.com/RustPython/__doc__",branch ="main" }
99

1010
indexmap ="1.8.1"

‎derive/Cargo.toml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name ="rustpython-derive"
3-
version ="0.1.2"
3+
version ="0.2.0"
44
description ="Rust language extensions and macros specific to rustpython."
55
authors = ["RustPython Team"]
66
repository ="https://github.com/RustPython/RustPython"
@@ -11,6 +11,6 @@ edition = "2021"
1111
proc-macro =true
1212

1313
[dependencies]
14-
rustpython-compiler = {path ="../compiler",version ="0.1.1" }
14+
rustpython-compiler = {path ="../compiler",version ="0.2.0" }
1515
rustpython-derive-impl = {path ="../derive-impl" }
1616
syn ="1.0.91"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp