From 16bc99203f9d870b84423a6530782f4421528838 Mon Sep 17 00:00:00 2001 From: Thelie Date: Sun, 27 Mar 2022 18:28:30 +0200 Subject: [PATCH] Bump version and update README --- Cargo.toml | 8 ++++---- README.md | 2 +- sing_macros/Cargo.toml | 6 +++--- sing_parse/Cargo.toml | 4 ++-- sing_util/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 39e55bf..4fad563 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ [package] name = "sing_rs" -version = "0.1.0" +version = "0.1.2" edition = "2021" license = "AGPL-3.0-or-later" license_file = "LICENSE.md" @@ -20,6 +20,6 @@ description = "Macros for generating STDIN/STDOUT interfaces to trait objects." bench = false [dependencies] -sing_macros = { path = "./sing_macros", version = "0.1.0" } -sing_parse = { path = "./sing_parse", version = "0.1.0" } -sing_util = { path = "./sing_util", version = " 0.1.0" } +sing_macros = { path = "./sing_macros", version = "0.1" } +sing_parse = { path = "./sing_parse", version = "0.1" } +sing_util = { path = "./sing_util", version = " 0.1" } diff --git a/README.md b/README.md index 5f903a6..38176ba 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ [![Crates.io](https://img.shields.io/crates/v/sing_rs)](https://crates.io/crates/sing_rs) [![License](https://img.shields.io/crates/l/sing_rs)](https://www.gnu.org/licenses/agpl-3.0.html) -## What is sing meant to be? +## What is sing? This crate is meant to create interfaces between traits in Rust libraries and the command line. It does this by providing two macros: diff --git a/sing_macros/Cargo.toml b/sing_macros/Cargo.toml index 34fc940..5299fc1 100644 --- a/sing_macros/Cargo.toml +++ b/sing_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sing_macros" -version = "0.1.0" +version = "0.1.2" edition = "2021" license = "AGPL-3.0-or-later" license_file = "../LICENSE.md" @@ -13,8 +13,8 @@ description = "Macros for sing_rs" proc-macro = true [dependencies] -sing_util = { version = "0.1", path = "../sing_util" } -sing_parse = { version = "0.1", path = "../sing_parse" } +sing_util = "0.1" +sing_parse = "0.1" proc-macro2 = "1.0" ron = "0.7" rand = "0.7" diff --git a/sing_parse/Cargo.toml b/sing_parse/Cargo.toml index daf21fa..ad22b54 100644 --- a/sing_parse/Cargo.toml +++ b/sing_parse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sing_parse" -version = "0.1.0" +version = "0.1.2" edition = "2021" license = "AGPL-3.0-or-later" license_file = "../LICENSE.md" @@ -21,5 +21,5 @@ syn = "1" regex = "1" lalrpop-util = "0.19" lalrpop = "0.19" -sing_util = { version = "0.1", path = "../sing_util" } +sing_util = "0.1" serde = { version = "1.0", features = ["derive"] } \ No newline at end of file diff --git a/sing_util/Cargo.toml b/sing_util/Cargo.toml index 7b9d538..38c0ab7 100644 --- a/sing_util/Cargo.toml +++ b/sing_util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sing_util" -version = "0.1.0" +version = "0.1.2" edition = "2021" license = "AGPL-3.0-or-later" license_file = "../LICENSE.md"