Skip to content

Commit

Permalink
More pub
Browse files Browse the repository at this point in the history
  • Loading branch information
smklein committed Jan 15, 2024
1 parent cb50375 commit f70713a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "omicron-zone-package"
version = "0.10.0"
version = "0.10.1"
authors = ["Sean Klein <[email protected]>"]
edition = "2018"
#
Expand Down
4 changes: 3 additions & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ use thiserror::Error;
use topological_sort::TopologicalSort;

/// Describes a set of packages to act upon.
pub struct PackageMap<'a>(BTreeMap<&'a String, &'a Package>);
///
/// This structure maps "package name" to "package"
pub struct PackageMap<'a>(pub BTreeMap<&'a String, &'a Package>);

// The name of a file which should be created by building a package.
#[derive(Clone, Eq, Hash, Ord, PartialEq, PartialOrd)]
Expand Down

0 comments on commit f70713a

Please sign in to comment.