From 5ddebe7945570253ce6f7bd0b2f050229b2dc5db Mon Sep 17 00:00:00 2001 From: Nattharat Wiriyakulnan Date: Mon, 8 Mar 2021 15:24:22 +0700 Subject: [PATCH] add description --- obi/obi-rs/obi-derive-internal/Cargo.toml | 4 +++- obi/obi-rs/obi-derive/Cargo.toml | 4 +++- obi/obi-rs/obi/Cargo.toml | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/obi/obi-rs/obi-derive-internal/Cargo.toml b/obi/obi-rs/obi-derive-internal/Cargo.toml index c6cf395938..41e5e04103 100644 --- a/obi/obi-rs/obi-derive-internal/Cargo.toml +++ b/obi/obi-rs/obi-derive-internal/Cargo.toml @@ -1,8 +1,10 @@ - [package] +[package] name = "obi-derive-internal" version = "0.0.2" authors = ["Band Protocol "] edition = "2018" +description = "OBI derive internal macros" +license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/obi/obi-rs/obi-derive/Cargo.toml b/obi/obi-rs/obi-derive/Cargo.toml index f61eb14cc8..5c49975d01 100644 --- a/obi/obi-rs/obi-derive/Cargo.toml +++ b/obi/obi-rs/obi-derive/Cargo.toml @@ -3,6 +3,8 @@ name = "obi-derive" version = "0.0.2" authors = ["Band Protocol "] edition = "2018" +description = "OBI derive macros" +license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -10,6 +12,6 @@ edition = "2018" proc-macro = true [dependencies] -obi-derive-internal = { path = "../obi-derive-internal"} +obi-derive-internal = { path = "../obi-derive-internal",version = "0.0.2"} syn = {version = "1.0.62", features = ["full", "fold"] } quote = "0.3.15" diff --git a/obi/obi-rs/obi/Cargo.toml b/obi/obi-rs/obi/Cargo.toml index dfd992fe83..956da54da6 100644 --- a/obi/obi-rs/obi/Cargo.toml +++ b/obi/obi-rs/obi/Cargo.toml @@ -3,11 +3,13 @@ name = "obi" version = "0.0.2" authors = ["Band Protocol "] edition = "2018" +description = "OBI" +license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -obi-derive = { path = "../obi-derive" } +obi-derive = { path = "../obi-derive" ,version = "0.0.2"} [features] default = ["std"]