-
-
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.
- Loading branch information
1 parent
a91a3a4
commit 52032a3
Showing
8 changed files
with
53 additions
and
48 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,19 +1,19 @@ | ||
[package] | ||
name = "crack-bf" | ||
version = "0.3.14" | ||
version = "0.3.15-alpha.1" | ||
edition = "2021" | ||
authors = ["Cycle Five <[email protected]>"] | ||
publish = true | ||
license = "MIT" | ||
description = "Brainfuck interpreter for cracktunes. v0.1.0" | ||
keywords = [ | ||
"music", | ||
"discord", | ||
"bot", | ||
"crack", | ||
"tunes", | ||
"brainfuck", | ||
"programming language", | ||
"music", | ||
"discord", | ||
"bot", | ||
"crack", | ||
"tunes", | ||
"brainfuck", | ||
"programming language", | ||
] | ||
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,7 +1,7 @@ | ||
[package] | ||
authors = ["Cycle Five <[email protected]>"] | ||
name = "cracktunes" | ||
version = "0.3.14" | ||
version = "0.3.15-alpha.1" | ||
description = "Cracktunes is a hassle-free, highly performant, host-it-yourself, cracking smoking, discord-music-bot." | ||
publish = true | ||
edition = "2021" | ||
|
@@ -25,10 +25,10 @@ eula = false | |
default = ["crack-tracing"] | ||
|
||
crack-telemetry = [ | ||
"crack-metrics", | ||
"opentelemetry", | ||
"opentelemetry_sdk", | ||
"tracing-bunyan-formatter", | ||
"crack-metrics", | ||
"opentelemetry", | ||
"opentelemetry_sdk", | ||
"tracing-bunyan-formatter", | ||
] | ||
crack-tracing = ["tracing-subscriber"] | ||
crack-metrics = ["prometheus", "warp"] | ||
|
@@ -40,13 +40,13 @@ crack-types = { path = "../crack-types/" } | |
config-file = { version = "0.2", features = ["json"] } | ||
dotenvy = "0.15" | ||
tracing-subscriber = { version = "0.3", features = [ | ||
"env-filter", | ||
"env-filter", | ||
], optional = true } | ||
|
||
# crack-metrics | ||
prometheus = { version = "0.13", features = ["process"], optional = true } | ||
warp = { version = "0.3", default-features = false, features = [ | ||
"tls", | ||
"tls", | ||
], optional = true } | ||
opentelemetry = { version = "0.25.0", optional = true } | ||
opentelemetry_sdk = { version = "0.25.0", optional = 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-core" | ||
version = "0.3.14" | ||
version = "0.3.15-alpha.1" | ||
authors = ["Cycle Five <[email protected]>"] | ||
edition = "2021" | ||
description = "Core module for the cracking smoking, discord-music-bot Cracktunes." | ||
|
@@ -16,13 +16,13 @@ workspace = "../" | |
|
||
[features] | ||
default = [ | ||
"crack-playlist", | ||
"crack-music", | ||
"crack-tracing", | ||
"crack-testing", | ||
"crack-types", | ||
"ignore-presence-log", | ||
"cache", | ||
"crack-playlist", | ||
"crack-music", | ||
"crack-tracing", | ||
"crack-testing", | ||
"crack-types", | ||
"ignore-presence-log", | ||
"cache", | ||
] | ||
cache = ["serenity/cache", "poise/cache"] | ||
crack-activity = [] | ||
|
@@ -108,13 +108,13 @@ ctor = "0.2" | |
tungstenite = "0.24.0" | ||
async-tungstenite = "0.28.0" | ||
sqlx = { version = "0.8.2", features = [ | ||
"runtime-tokio", | ||
"tls-rustls", | ||
"macros", | ||
"postgres", | ||
"chrono", | ||
"migrate", | ||
"json", | ||
"runtime-tokio", | ||
"tls-rustls", | ||
"macros", | ||
"postgres", | ||
"chrono", | ||
"migrate", | ||
"json", | ||
] } | ||
|
||
[build-dependencies] | ||
|
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-gpt" | ||
version = "0.3.14" | ||
version = "0.3.15-alpha.1" | ||
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-osint" | ||
version = "0.3.14" | ||
version = "0.3.15-alpha.1" | ||
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,7 +1,7 @@ | ||
[package] | ||
authors = ["Cycle Five <[email protected]>"] | ||
name = "crack-testing" | ||
version = "0.3.14" | ||
version = "0.3.15-alpha.1" | ||
edition = "2021" | ||
publish = true | ||
license = "MIT" | ||
|
@@ -23,14 +23,14 @@ once_cell = "1.20" | |
futures = "0.3" | ||
rand = "0.8" | ||
reqwest = { version = "0.12", default-features = false, features = [ | ||
"blocking", | ||
"json", | ||
"multipart", | ||
"rustls-tls", | ||
"cookies", | ||
"charset", | ||
"http2", | ||
"macos-system-configuration", | ||
"blocking", | ||
"json", | ||
"multipart", | ||
"rustls-tls", | ||
"cookies", | ||
"charset", | ||
"http2", | ||
"macos-system-configuration", | ||
] } | ||
serenity = { workspace = true } | ||
tracing = "0.1.40" | ||
|
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