-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
28 additions
and
30 deletions.
There are no files selected for viewing
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,11 +1,11 @@ | ||
[package] | ||
name = "crack-bf" | ||
version = "0.1.0" | ||
version = "0.3.13" | ||
edition = "2021" | ||
authors = ["Cycle Five <[email protected]>"] | ||
publish = true | ||
license = "MIT" | ||
description = "Brainfuck interpreter for cracktunes." | ||
description = "Brainfuck interpreter for cracktunes. v0.1.0" | ||
keywords = [ | ||
"music", | ||
"discord", | ||
|
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] | ||
authors = ["Cycle Five <[email protected]>"] | ||
name = "cracktunes" | ||
version = "0.3.12" | ||
version = "0.3.13" | ||
description = "Cracktunes is a hassle-free, highly performant, host-it-yourself, cracking smoking, discord-music-bot." | ||
publish = true | ||
edition = "2021" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "crack-core" | ||
version = "0.3.12" | ||
version = "0.3.13" | ||
authors = ["Cycle Five <[email protected]>"] | ||
edition = "2021" | ||
description = "Core module for the cracking smoking, discord-music-bot Cracktunes." | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "crack-gpt" | ||
version = "0.2.0" | ||
version = "0.3.13" | ||
edition = "2021" | ||
authors = ["Cycle Five <[email protected]>"] | ||
publish = true | ||
license = "MIT" | ||
description = "GPT module for Cracktunes." | ||
description = "GPT module for Cracktunes. v0.2.0." | ||
keywords = ["music", "discord", "bot", "crack", "tunes"] | ||
categories = ["multimedia::audio"] | ||
homepage = "https://cracktun.es/" | ||
|
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,11 +1,11 @@ | ||
[package] | ||
name = "crack-osint" | ||
version = "0.1.4" | ||
version = "0.3.13" | ||
edition = "2021" | ||
authors = ["Cycle Five <[email protected]>"] | ||
publish = true | ||
license = "MIT" | ||
description = "OSINT module for Cracktunes." | ||
description = "OSINT module for Cracktunes. v0.1.4." | ||
keywords = ["music", "discord", "bot", "crack", "tunes"] | ||
categories = ["multimedia::audio"] | ||
homepage = "https://cracktun.es/" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "crack-testing" | ||
version = "0.1.0" | ||
version = "0.3.13" | ||
edition = "2021" | ||
authors = ["Cycle Five <[email protected]>"] | ||
publish = true | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "crack-types" | ||
version = "0.1.0" | ||
version = "0.3.13" | ||
edition = "2021" | ||
authors = ["Cycle Five <[email protected]>"] | ||
publish = true | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "crack-voting" | ||
version = "0.1.0" | ||
version = "0.3.13" | ||
edition = "2021" | ||
authors = ["Cycle Five <[email protected]>"] | ||
publish = true | ||
|
@@ -20,8 +20,8 @@ path-guid = "08ECB7E7-1E6E-4C7A-9C08-2EF1DD1CE768" | |
license = false | ||
eula = false | ||
|
||
[package.metadata.dist] | ||
dist = false | ||
# [package.metadata.dist] | ||
# dist = false | ||
|
||
[dependencies] | ||
lazy_static = "1.5" | ||
|
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,8 +1,9 @@ | ||
#!/bin/sh | ||
export PROFILE=release | ||
export PROFILE=debug | ||
cargo +nightly fmt --all -- --check --profile=$PROFILE | ||
cargo +nightly clippy --profile=$PROFILE --workspace -- -D clippy::all -D warnings | ||
cargo +nightly test --profile=$PROFILE --workspace | ||
exit 0 | ||
cargo +nightly tarpaulin --profile=$PROFILE --verbose --workspace --timeout 120 --out xml | ||
cargo +nightly build --profile=$PROFILE --workspace | ||
|