Skip to content

Commit

Permalink
refactor library names
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Apr 19, 2024
1 parent 1e1e023 commit b0422c1
Show file tree
Hide file tree
Showing 16 changed files with 39 additions and 39 deletions.
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[workspace]
members = [
"src/bin/sdre-hub",
"src/libraries/libshapi",
"src/libraries/libshconfig",
"src/libraries/libsdrehub",
"src/libraries/libsdrehubcommon",
"src/libraries/sdrehub-api",
"src/libraries/sdrehub-config",
]

resolver = "2"
Expand Down
4 changes: 2 additions & 2 deletions src/bin/sdre-hub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ keywords.workspace = true

[dependencies]
libsdrehub = { path = "../../libraries/libsdrehub" }
sdrehub_api = { path = "../../libraries/sdrehub-api" }
sdrehub_config = { path = "../../libraries/sdrehub-config" }
libshapi = { path = "../../libraries/libshapi" }
libshconfig = { path = "../../libraries/libshconfig" }
tokio = { version = "1.37.0", features = ["full", "tracing"] }
2 changes: 1 addition & 1 deletion src/bin/sdre-hub/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
)]

use libsdrehub::SdreHub;
use sdrehub_config::ShConfig;
use libshconfig::ShConfig;
use std::error::Error;

#[tokio::main]
Expand Down
4 changes: 2 additions & 2 deletions src/libraries/libsdrehub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ keywords.workspace = true
[dependencies]
libsdrehubcommon = { path = "../libsdrehubcommon" }
log = "0.4.21"
sdrehub_api = { path = "../sdrehub-api" }
sdrehub_config = { path = "../sdrehub-config" }
libshapi = { path = "../libshapi" }
libshconfig = { path = "../libshconfig" }
tokio = { version = "1.37.0", features = ["full", "tracing"] }
4 changes: 2 additions & 2 deletions src/libraries/libsdrehub/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
extern crate log;

use libsdrehubcommon::ShDataUserList;
use sdrehub_api::ShWebServer;
use sdrehub_config::ShConfig;
use libshapi::ShWebServer;
use libshconfig::ShConfig;
use tokio::task::JoinSet;

pub struct SdreHub {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "sdrehub_api"
name = "libshapi"
version.workspace = true
edition.workspace = true
authors.workspace = true
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "sdrehub_config"
name = "libshconfig"
version.workspace = true
edition.workspace = true
authors.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b0422c1

Please sign in to comment.