Skip to content

Commit

Permalink
Merge pull request #133 from sr-gi/add-cargo-desc
Browse files Browse the repository at this point in the history
sim-all: Adds description to both existing creates
  • Loading branch information
carlaKC authored Oct 10, 2023
2 parents 8714795 + 6e5fbf5 commit 233c15b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions sim-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name = "sim-cli"
version = "0.1.0"
edition = "2021"
description = """
Instantly simulate real-world Lightning network activity
"""

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion sim-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use sim_lib::{
use simple_logger::SimpleLogger;

#[derive(Parser)]
#[command(version)]
#[command(version, about)]
struct Cli {
#[clap(index = 1)]
sim_file: PathBuf,
Expand Down
3 changes: 3 additions & 0 deletions sim-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
name = "sim-lib"
version = "0.1.0"
edition = "2021"
description = """
Backend logic of the SimLN project. Contains all the functionality to build your own simulator
"""

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 233c15b

Please sign in to comment.