-
Notifications
You must be signed in to change notification settings - Fork 0
chore: use serenity songbird next branch #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,6 +3,9 @@ name = "text-to-speech-rs" | |||||
| version = "0.1.0" | ||||||
| edition = "2024" | ||||||
|
|
||||||
| [build-dependencies] | ||||||
| vergen-gitcl = { version = "9.1.0", features = ["build", "cargo"] } | ||||||
|
|
||||||
| [profile.release] | ||||||
| strip = true | ||||||
| lto = "thin" | ||||||
|
|
@@ -25,7 +28,7 @@ sha2 = "0.10.9" | |||||
| hex = "0.4.3" | ||||||
| tracing = "0.1.43" | ||||||
| tracing-subscriber = { version = "0.3.22", features = ["env-filter"] } | ||||||
| songbird = { git = "https://github.com/beerpsi-forks/songbird", rev = "25195877c715e08df25eda668df6b3a6bb3d3cdf", features = [ | ||||||
| songbird = { git = "https://github.com/serenity-rs/songbird", branch = "next", features = [ | ||||||
|
||||||
| songbird = { git = "https://github.com/serenity-rs/songbird", branch = "next", features = [ | |
| songbird = { git = "https://github.com/serenity-rs/songbird", rev = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", features = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[build-dependencies]are only built/used when the crate has a build script (build.rs) or abuild = "..."entry in[package]. This repo currently has no build script, so addingvergen-gitclhere has no effect other than extra dependency resolution/fetch. Either add and wire up a build script that usesvergen-gitcl, or remove this build-dependency.