Skip to content

Commit cc24b73

Browse files
committed
Set all versions to 0.1.0
1 parent 93f70ab commit cc24b73

File tree

7 files changed

+38
-19
lines changed

7 files changed

+38
-19
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "rustpython"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
authors = ["RustPython Team"]
55
edition = "2018"
6+
description = "A python interpreter written in rust."
7+
repository = "https://github.com/RustPython/RustPython"
8+
license = "MIT"
69

710
[workspace]
811
members = [".", "derive", "vm", "wasm/lib", "parser", "compiler", "bytecode"]
@@ -16,9 +19,9 @@ path = "./benchmarks/bench.rs"
1619
log="0.4.1"
1720
env_logger="0.5.10"
1821
clap = "2.31.2"
19-
rustpython-compiler = {path = "compiler"}
20-
rustpython-parser = {path = "parser"}
21-
rustpython-vm = {path = "vm"}
22+
rustpython-compiler = {path = "compiler", version = "0.1.0"}
23+
rustpython-parser = {path = "parser", version = "0.1.0"}
24+
rustpython-vm = {path = "vm", version = "0.1.0"}
2225
rustyline = "4.1.0"
2326
xdg = "2.2.0"
2427

bytecode/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
[package]
22
name = "rustpython-bytecode"
3+
description = "RustPython specific bytecode."
34
version = "0.1.0"
45
authors = ["RustPython Team"]
56
edition = "2018"
7+
repository = "https://github.com/RustPython/RustPython"
8+
license = "MIT"
9+
610

711
[dependencies]
812
bitflags = "1.1"

compiler/Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
[package]
22
name = "rustpython-compiler"
33
version = "0.1.0"
4+
description = "Compiler for python code into bytecode for the rustpython VM."
45
authors = ["RustPython Team"]
6+
repository = "https://github.com/RustPython/RustPython"
7+
license = "MIT"
58
edition = "2018"
69

710
[dependencies]
8-
rustpython-bytecode = { path = "../bytecode" }
9-
rustpython-parser = { path = "../parser" }
11+
rustpython-bytecode = { path = "../bytecode", version = "0.1.0" }
12+
rustpython-parser = { path = "../parser", version = "0.1.0" }
1013
num-complex = { version = "0.2", features = ["serde"] }
1114
log = "0.3"

derive/Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "rustpython-derive"
33
version = "0.1.0"
4+
description = "Rust language extensions and macros specific to rustpython."
45
authors = ["RustPython Team"]
6+
repository = "https://github.com/RustPython/RustPython"
7+
license = "MIT"
58
edition = "2018"
69

710
[lib]
@@ -11,7 +14,7 @@ proc-macro = true
1114
syn = { version = "0.15.29", features = ["full"] }
1215
quote = "0.6.11"
1316
proc-macro2 = "0.4.27"
14-
rustpython-compiler = { path = "../compiler" }
15-
rustpython-bytecode = { path = "../bytecode" }
17+
rustpython-compiler = { path = "../compiler", version = "0.1.0" }
18+
rustpython-bytecode = { path = "../bytecode", version = "0.1.0" }
1619
bincode = "1.1"
1720
proc-macro-hack = "0.5"

parser/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "rustpython-parser"
3-
version = "0.0.1"
3+
version = "0.1.0"
4+
description = "Parser for python code."
45
authors = [ "RustPython Team" ]
56
build = "build.rs"
7+
repository = "https://github.com/RustPython/RustPython"
8+
license = "MIT"
69
edition = "2018"
710

811
[build-dependencies]

vm/Cargo.toml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "rustpython-vm"
33
version = "0.1.0"
4+
description = "Rust Python virtual machine."
45
authors = ["RustPython Team"]
6+
repository = "https://github.com/RustPython/RustPython"
7+
license = "MIT"
58
edition = "2018"
69

710
[features]
@@ -23,10 +26,10 @@ num-integer = "0.1.39"
2326
num-rational = "0.2.1"
2427
rand = "0.5"
2528
log = "0.3"
26-
rustpython-derive = {path = "../derive"}
27-
rustpython-parser = {path = "../parser", optional = true}
28-
rustpython-compiler = {path = "../compiler", optional = true}
29-
rustpython-bytecode = { path = "../bytecode" }
29+
rustpython-derive = {path = "../derive", version = "0.1.0"}
30+
rustpython-parser = {path = "../parser", optional = true, version = "0.1.0"}
31+
rustpython-compiler = {path = "../compiler", optional = true, version = "0.1.0"}
32+
rustpython-bytecode = { path = "../bytecode", version = "0.1.0"}
3033
serde = { version = "1.0.66", features = ["derive"] }
3134
serde_json = "1.0.26"
3235
byteorder = "1.2.6"

0 commit comments

Comments
 (0)