-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: small reorganisation of launchpad crate
The crate is slightly reorganised to accommodate the addition of the launcher binary. It will be useful to have the launcher and TUI tightly coupled, with the same version number. The changes: * Move `node-launchpad` into its own `bin` directory. Shortly the launcher will be added as a directory alongside it. * Since the `Cli` struct was the only thing in the `cli` module, the module can be removed in favour of the struct sitting alongside the TUI binary's `main` module. * Correct misspelled version keys in references. * Tidy dependencies to be sorted alphabetically for easier reference.
- Loading branch information
Showing
4 changed files
with
46 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright 2024 MaidSafe.net limited. | ||
// | ||
// This SAFE Network Software is licensed to you under The General Public License (GPL), version 3. | ||
// Unless required by applicable law or agreed to in writing, the SAFE Network Software distributed | ||
// under the GPL Licence is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. Please review the Licences for the specific language governing | ||
// permissions and limitations relating to use of the SAFE Network Software. | ||
|
||
pub mod action; | ||
pub mod app; | ||
pub mod components; | ||
pub mod config; | ||
pub mod mode; | ||
pub mod tui; | ||
pub mod utils; | ||
|
||
#[macro_use] | ||
extern crate tracing; |