From 6e759ac5bce86e983c0d12f7c93626dad7e91c00 Mon Sep 17 00:00:00 2001 From: Windel Bouwman Date: Sun, 7 Jul 2019 13:04:12 +0200 Subject: [PATCH] Set all versions to 0.1.0 --- Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8fdb378..0a2c155 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,14 @@ [package] name = "rustpython-compiler" version = "0.1.0" +description = "Compiler for python code into bytecode for the rustpython VM." authors = ["RustPython Team"] +repository = "https://github.com/RustPython/RustPython" +license = "MIT" edition = "2018" [dependencies] -rustpython-bytecode = { path = "../bytecode" } -rustpython-parser = { path = "../parser" } +rustpython-bytecode = { path = "../bytecode", version = "0.1.0" } +rustpython-parser = { path = "../parser", version = "0.1.0" } num-complex = { version = "0.2", features = ["serde"] } log = "0.3"