From a8de4044b86b42a869d0066913564ba695a514c1 Mon Sep 17 00:00:00 2001 From: Windel Bouwman Date: Mon, 1 Jul 2019 21:05:29 +0200 Subject: [PATCH 1/2] Change underscore into hyphen --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dccc3b0..9056260 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] -name = "rustpython_compiler" +name = "rustpython-compiler" version = "0.1.0" authors = ["coolreader18 <33094578+coolreader18@users.noreply.github.com>", "Windel Bouwman "] edition = "2018" [dependencies] -rustpython_bytecode = { path = "../bytecode" } -rustpython_parser = { path = "../parser" } +rustpython-bytecode = { path = "../bytecode" } +rustpython-parser = { path = "../parser" } num-complex = { version = "0.2", features = ["serde"] } log = "0.3" From 4396af76fbc5948e9a322f9423113875f424cb75 Mon Sep 17 00:00:00 2001 From: Windel Bouwman Date: Mon, 1 Jul 2019 21:14:07 +0200 Subject: [PATCH 2/2] Change authors to team name. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9056260..8fdb378 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustpython-compiler" version = "0.1.0" -authors = ["coolreader18 <33094578+coolreader18@users.noreply.github.com>", "Windel Bouwman "] +authors = ["RustPython Team"] edition = "2018" [dependencies]