Skip to content

Commit

Permalink
missed running fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Nov 17, 2024
1 parent aa30652 commit 03e9008
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ use dunce::canonicalize;
use fs_err as fs;
use indicatif::HumanBytes;
use rattler_conda_types::{
package::{ArchiveType, PathType, PathsEntry, PathsJson}, Channel, ChannelUrl, GenericVirtualPackage, PackageName, Platform, RepoDataRecord, Version
package::{ArchiveType, PathType, PathsEntry, PathsJson},
Channel, ChannelUrl, GenericVirtualPackage, PackageName, Platform, RepoDataRecord, Version,
};
use rattler_index::index;
use rattler_package_streaming::write::CompressionLevel;
Expand Down
3 changes: 2 additions & 1 deletion src/package_test/run_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ use dunce::canonicalize;
use fs_err as fs;
use rattler::package_cache::CacheKey;
use rattler_conda_types::{
package::{ArchiveIdentifier, IndexJson, PackageFile}, Channel, ChannelUrl, MatchSpec, ParseStrictness, Platform
package::{ArchiveIdentifier, IndexJson, PackageFile},
Channel, ChannelUrl, MatchSpec, ParseStrictness, Platform,
};
use rattler_index::index;
use rattler_shell::{
Expand Down
4 changes: 3 additions & 1 deletion src/render/resolved_dependencies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ use indicatif::{HumanBytes, MultiProgress, ProgressBar};
use rattler::install::Placement;
use rattler_cache::package_cache::PackageCache;
use rattler_conda_types::{
package::RunExportsJson, version_spec::ParseVersionSpecError, ChannelUrl, MatchSpec, PackageName, PackageRecord, ParseStrictness, Platform, RepoDataRecord, StringMatcher, VersionSpec
package::RunExportsJson, version_spec::ParseVersionSpecError, ChannelUrl, MatchSpec,
PackageName, PackageRecord, ParseStrictness, Platform, RepoDataRecord, StringMatcher,
VersionSpec,
};
use reqwest_middleware::ClientWithMiddleware;
use serde::{Deserialize, Serialize};
Expand Down
4 changes: 3 additions & 1 deletion src/render/solver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ pub async fn solve_environment(
for channel in channels {
tracing::info!(
" - {}",
tool_configuration.channel_config.canonical_name(channel.url())
tool_configuration
.channel_config
.canonical_name(channel.url())
);
}
tracing::info!(" Specs:");
Expand Down

0 comments on commit 03e9008

Please sign in to comment.