From c15f0388c029970a0c0cce39ea50c91405138dc7 Mon Sep 17 00:00:00 2001 From: Blake Jakopovic Date: Sun, 4 Dec 2022 14:46:30 +0100 Subject: [PATCH] Bump v0.1.0 --- Cargo.toml | 7 +++++-- src/lib.rs | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4796e18..8951507 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,12 @@ [package] name = "nostreq" +description = "Nostr relay event request generator" version = "0.1.0" edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +repository = "https://github.com/blakejakopovic/nostreq" +license-file = "LICENSE.txt" +readme = "README.md" +keywords = ["nostr", "nostr-protocol", "json", "cli"] [dependencies] serde = { version = "1.0.148", features = ["derive"] } diff --git a/src/lib.rs b/src/lib.rs index ea9cffa..7ec04a8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,8 +4,8 @@ use serde::{Serialize, Deserialize}; pub fn cli() -> Command { Command::new("nostreq") - .about("Nostr commandline request builder") - .version("0.0.1") + .about("Nostr relay event request generator") + .version("0.1.0") .author("Blake Jakopovic") .arg( Arg::new("subscription-id")