forked from Nukesor/pueue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Move pueue-lib back into main repository
- Loading branch information
Showing
6 changed files
with
84 additions
and
44 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pueue" | ||
description = "A cli tool for managing long running shell commands." | ||
version = "1.1.0-alpha.0" | ||
version = "2.0.0" | ||
authors = ["Arne Beer <[email protected]>"] | ||
homepage = "https://github.com/nukesor/pueue" | ||
repository = "https://github.com/nukesor/pueue" | ||
|
@@ -15,6 +15,9 @@ edition = "2021" | |
[badges] | ||
maintenance = { status="actively-developed" } | ||
|
||
[workspace] | ||
members = ["lib"] | ||
|
||
[[bin]] | ||
name = "pueue" | ||
path = "client/main.rs" | ||
|
@@ -31,9 +34,7 @@ name = "pueued" | |
path = "daemon/main.rs" | ||
|
||
[dependencies] | ||
#pueue-lib = "0.18.0" | ||
pueue-lib = { git="https://github.com/Nukesor/pueue-lib", branch="main" } | ||
#pueue-lib = { path="../../libraries/pueue-lib" } | ||
pueue-lib = { version="0.19", path="lib" } | ||
|
||
anyhow = "1" | ||
chrono = { version="0.4", features=["serde"] } | ||
|
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 |
---|---|---|
@@ -1,22 +1,2 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
/target/ | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
*_stdout* | ||
*_stderr* | ||
|
||
# Ignore Cargo.lock, since this is a library | ||
Cargo.lock | ||
|
||
# OS generated files # | ||
###################### | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pueue-lib" | ||
description = "The shared library to work with the Pueue client and daemon." | ||
version = "0.18.2-alpha.0" | ||
version = "0.19.0" | ||
authors = ["Arne Beer <[email protected]>"] | ||
homepage = "https://github.com/nukesor/pueue-lib" | ||
repository = "https://github.com/nukesor/pueue-lib" | ||
|