Skip to content
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

build(deps): Bump clap from 4.5.26 to 4.5.27 #470

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ edition = "2018"
name = "buckle"

[dependencies]
clap = { version = "4.5.26", features = ["cargo", "env", "string"] }
clap = { version = "4.5.27", features = ["cargo", "env", "string"] }
directories-next = "2.0"
dunce = "1.0"
futures = "0.3"

Unchanged files with check annotations Beta

use std::{path::PathBuf, collections::HashMap, hash::Hash};

Check warning on line 1 in src/commands/apply.rs

GitHub Actions / linux-amd64-test

unused import: `hash::Hash`

Check warning on line 1 in src/commands/apply.rs

GitHub Actions / darwin-amd64-test

unused import: `hash::Hash`
use clap::{Arg, ArgAction, value_parser};
use opentelemetry::trace::SpanKind;
pub use human_errors::detailed_message;

Check warning on line 1 in src/errors/mod.rs

GitHub Actions / linux-amd64-test

unused import: `human_errors::detailed_message`

Check warning on line 1 in src/errors/mod.rs

GitHub Actions / darwin-amd64-test

unused import: `human_errors::detailed_message`
#[cfg(unix)]
mod nix;
.with_endpoint(endpoint)
.with_metadata(metadata),
)
.with_trace_config(opentelemetry::sdk::trace::config().with_resource(

Check failure on line 190 in src/main.rs

GitHub Actions / linux-amd64-test

mismatched types

Check failure on line 190 in src/main.rs

GitHub Actions / darwin-amd64-test

mismatched types
opentelemetry::sdk::Resource::new(vec![
opentelemetry::KeyValue::new("service.name", "buckle"),
opentelemetry::KeyValue::new("service.version", version!("v")),
opentelemetry::KeyValue::new("host.architecture", std::env::consts::ARCH),
]),
))
.install_batch(opentelemetry::runtime::Tokio)

Check failure on line 198 in src/main.rs

GitHub Actions / linux-amd64-test

the trait bound `Tokio: opentelemetry_sdk::runtime::RuntimeChannel` is not satisfied

Check failure on line 198 in src/main.rs

GitHub Actions / darwin-amd64-test

the trait bound `Tokio: opentelemetry_sdk::runtime::RuntimeChannel` is not satisfied
.unwrap();
tracing_opentelemetry::subscriber()
.with_tracer(tracer)

Check failure on line 202 in src/main.rs

GitHub Actions / linux-amd64-test

the trait bound `opentelemetry_sdk::trace::tracer::Tracer: opentelemetry_api::trace::tracer::Tracer` is not satisfied

Check failure on line 202 in src/main.rs

GitHub Actions / linux-amd64-test

the trait bound `opentelemetry_sdk::trace::tracer::Tracer: PreSampledTracer` is not satisfied

Check failure on line 202 in src/main.rs

GitHub Actions / darwin-amd64-test

the trait bound `opentelemetry_sdk::trace::tracer::Tracer: opentelemetry_api::trace::tracer::Tracer` is not satisfied

Check failure on line 202 in src/main.rs

GitHub Actions / darwin-amd64-test

the trait bound `opentelemetry_sdk::trace::tracer::Tracer: PreSampledTracer` is not satisfied
.boxed()

Check failure on line 203 in src/main.rs

GitHub Actions / linux-amd64-test

the method `boxed` exists for struct `OpenTelemetrySubscriber<_, Tracer>`, but its trait bounds were not satisfied

Check failure on line 203 in src/main.rs

GitHub Actions / darwin-amd64-test

the method `boxed` exists for struct `OpenTelemetrySubscriber<_, Tracer>`, but its trait bounds were not satisfied
} else {
tracing_subscriber::fmt::subscriber()
.boxed()