Skip to content

Commit f70713a

Browse files
committed
More pub
1 parent cb50375 commit f70713a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "omicron-zone-package"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors = ["Sean Klein <[email protected]>"]
55
edition = "2018"
66
#

src/config.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ use thiserror::Error;
1313
use topological_sort::TopologicalSort;
1414

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

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

0 commit comments

Comments
 (0)