Skip to content

Commit 4a64fa0

Browse files
committed
multi: rename sim-lib to simln-lib
1 parent da0ab44 commit 4a64fa0

File tree

13 files changed

+8
-9
lines changed

13 files changed

+8
-9
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ resolver = "2"
33

44
members = [
55
"sim-cli",
6-
"sim-lib",
6+
"simln-lib",
77
]

sim-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ log = "0.4.20"
1616
serde = "1.0.183"
1717
serde_json = "1.0.104"
1818
simple_logger = "4.2.0"
19-
sim-lib = { path = "../sim-lib" }
19+
simln-lib = { path = "../simln-lib" }
2020
tokio = { version = "1.26.0", features = ["full"] }
2121
bitcoin = { version = "0.30.1" }
2222
ctrlc = "3.4.0"

sim-cli/src/main.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use bitcoin::secp256k1::PublicKey;
2-
use sim_lib::SimulationCfg;
32
use std::collections::HashMap;
43
use std::path::PathBuf;
54
use std::sync::Arc;
@@ -9,9 +8,9 @@ use anyhow::anyhow;
98
use clap::builder::TypedValueParser;
109
use clap::Parser;
1110
use log::LevelFilter;
12-
use sim_lib::{
11+
use simln_lib::{
1312
cln::ClnNode, lnd::LndNode, ActivityDefinition, LightningError, LightningNode, NodeConnection,
14-
NodeId, SimParams, Simulation, WriteResults,
13+
NodeId, SimParams, Simulation, SimulationCfg, WriteResults,
1514
};
1615
use simple_logger::SimpleLogger;
1716

sim-lib/Cargo.toml renamed to simln-lib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "sim-lib"
2+
name = "simln-lib"
33
version = "0.1.0"
44
edition = "2021"
55
description = """
@@ -33,4 +33,4 @@ mockall = "0.12.1"
3333
rand_chacha = "0.3.1"
3434

3535
[dev-dependencies]
36-
ntest = "0.9.0"
36+
ntest = "0.9.0"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)