Skip to content

Commit

Permalink
Drop bullet_stream dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
runesoerensen committed Dec 11, 2024
1 parent 0d7aa27 commit 155a60c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 10 deletions.
7 changes: 0 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion buildpacks/dotnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ autotests = false
workspace = true

[dependencies]
bullet_stream = "0.3.0"
fun_run = "0.2.0"
hex = "0.4"
indoc = "2"
Expand Down
3 changes: 1 addition & 2 deletions buildpacks/dotnet/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use crate::dotnet_buildpack_configuration::DotnetBuildpackConfigurationError;
use crate::layers::sdk::SdkLayerError;
use crate::DotnetBuildpackError;
use buildpacks_jvm_shared::output;
use bullet_stream::style;
use indoc::formatdoc;
use std::io;

Expand Down Expand Up @@ -307,7 +306,7 @@ fn log_io_error(header: &str, occurred_while: &str, io_error: &io::Error) {

fn log_error(header: impl AsRef<str>, body: impl AsRef<str>, error: Option<String>) {
if let Some(error) = error {
output::print_section(style::important("Debug info"));
output::print_section("Debug info");
output::print_subsection(error);
}
output::print_error(header, body.as_ref());
Expand Down

0 comments on commit 155a60c

Please sign in to comment.